Archive for the ‘Coding’ Category
May
06
Posted under
Coding Below are a few useful modifications for the Twenty Eleven theme in WordPress.
1. How to remove the Search box.
Locate the HEADER.PHP file and remove the code below;
<?php
// Has the text been hidden?
if ( 'blank' == get_header_textcolor() ) :
?>
<div>
<?php get_search_form(); ?>
</div>
<?php
else :
?>
<?php get_search_form(); ?>
<?php endif; ?>
2. How to remove the Page Title description on each page.
Locate the CONTENT-PAGE.PHP file and remove the code below;
h1 class=”entry-title”><?php the_title(); ?></h1>
3. How to reduce whitespace below menu and Page Title .
Locate the STYLE.CSS file and add the code below to the end of the file;
#main,.singular.page .hentry{padding:0;}
4. How to modify the footer.
Change..
” title=”<?php esc_attr_e( ‘Semantic Personal Publishing Platform’, ‘twentyeleven’ ); ?>” rel=”generator”><?php printf( __( ‘Proudly powered by %s’, ‘twentyeleven’ ), ‘WordPress’ ); ?>
To
” title=”<?php esc_attr_e( ‘Semantic Personal Publishing Platform’, ‘twentyeleven’ ); ?>” rel=”generator”><?php printf( ‘Yoursite copyright 2011’ ); ?>
Mar
13
Posted under
Coding,
Databases,
Software
The other day while browsing the Internet, I Found A Fix for a recent problem I was having. The issue is described as follows;
The solution and description to this error is set out below;
When trying to install Oracle 6i Forms and reports, I receive the error ‘Orainst.exe has encountered a problem, the information you were working on might be lost’.
It also says that the file ‘oibknd32.dll2 is the cause.
The solution is as follows;
Read the rest of this entry »
Mar
03
Posted under
Coding,
Software The other day while browsing the Internet, I Found A Fix for a recent problem I was having. The issue is described as follows;
When using a Foxpro database, I received the following error; Position is off the screen. After this, the application would terminate unexpectedly.
The solution and description to this error is set out below;
Read the rest of this entry »
Jan
28
Posted under
Coding,
Dreamweaver The other day while browsing the Internet, I Found A Fix for a recent problem I was having. The issue is described as follows;
I was trying to enable and test the plugin for wordpress that allows me to perform an automatic upgrade when I received the error ‘could not initiate maintenance mode’.
The solution and description to this error is set out below; Read the rest of this entry »
Jan
14
Posted under
Coding,
Dreamweaver,
Internet,
Software The other day while browsing the Internet I Found A Fix for a recent problem I was having. The issue is described as follows;
I had downloaded a free wordpress theme for my blog and I was unable to modify the footer.php file because it had been encrypted. This is most likely because the author of the theme wanted to keep their link at the bottom of the blog in order to maintain credit for their work.
The solution and description to this error is set out below; Read the rest of this entry »
Mar
05
Posted under
Coding,
Dreamweaver,
Software The other day while browsing the Internet I Found A Fix for a recent problem I was having. The issue is described as follows;
I was unable to setup my wordpress plugin for WP_Cache. I received the error “advanced-cache.php link does not exist” and also “Error: WP_CACHE is not enabled in your wp-config.php “
The solution and description to this error is set out below;
Read the rest of this entry »