I Found a Fix

Where Answers are Found!

Welcome to I FoundAFix.com - Where real answers are found! Our aim is to provide proven solutions to real problems. This website is a resource for tried and tested answers for everyday or obscure problems.

Archive for the ‘Coding’ Category

May
06

Modifications to the Twenty Eleven Theme in WordPress

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

Orainst.exe has encountered a problem, the information you were working on might be lost

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’.

orainstexe1

It also says that the file ‘oibknd32.dll2 is the cause. 

 error-signature1

The solution is as follows;

Read the rest of this entry »

Mar
03

Foxpro Database error; Position is off the screen

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

WordPress Automatic Upgrade – ‘could not initiate maintenance mode’

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

How to remove the footer encryption in a wordpress theme

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

WP_CACHE wp-config.php advanced-cache.php

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 »