« See all FAQs for Creative WordPress Theme - 9 in 1
I followed the instructions, but all I get is bacground and few links in top menu.
It looks like you are using php4 on your server. Try this. Open functions.php and paste this function
function str_ireplace($needle, $replacement, $haystack) {
$i = 0;
while (($pos = strpos(strtolower($haystack),strtolower($needle), $i)) !== false) {
$haystack = substr($haystack, 0, $pos).$replacement.substr($haystack, $pos+strlen($needle));
$i=$pos+strlen($replacement);
}
return $haystack;
}


