neilscott
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: [Plugin: WP Super Cache] caching of categories screwed upI also have this problem.
Forum: Fixing WordPress
In reply to: Manage->Posts page missingThe same thing happened to me, but in my case it was solved by deactivating CG feedread plugin
Forum: Developing with WordPress
In reply to: $_SERVER[’SCRIPT_NAME’ issuesOkay, I managed to sort it out, here is the solution:
<?php if(stristr($_SERVER['REQUEST_URI'], '/about')){ include( TEMPLATEPATH . '/nav/about.php'); }elseif(stristr($_SERVER['REQUEST_URI'], '/brands')){ include( TEMPLATEPATH . '/nav/contact.php'); }elseif(stristr($_SERVER['REQUEST_URI'], '/investor')){ include( TEMPLATEPATH . '/nav/contact.php'); }elseif(stristr($_SERVER['REQUEST_URI'], '/careers')){ include( TEMPLATEPATH . '/nav/contact.php'); }elseif(stristr($_SERVER['REQUEST_URI'], '/media')){ include( TEMPLATEPATH . '/nav/contact.php'); }elseif(stristr($_SERVER['REQUEST_URI'], '/contact')){ include( TEMPLATEPATH . '/nav/contact.php'); }else{ include( TEMPLATEPATH . '/nav/home.php'); } ?>Forum: Fixing WordPress
In reply to: Convert Pages to PostThis is what you’ll need to put into phpmyadmin SQL query.
UPDATE wp_posts SET post_type= replace(post_type,”page”,”post”)