isler45 0 Report post Posted March 14, 2011 Is there a simple way to make the seo in platform pro act like the seo in the default wordpress template? I am using a datafeed store plugin and the title tags work fine with the default template with or without All In One Seo. With platform they don't work with or without All In One Seo on the pages the plugin creates. Here is the code the plugin sends for the store pages: ` [category.name] | ` Any help would be appreciated. Share this post Link to post Share on other sites
Andrew 207 Report post Posted March 14, 2011 I can take a look, there isn't a plugin that can help you with this one? Share this post Link to post Share on other sites
isler45 0 Report post Posted March 14, 2011 When I activate the All In One Seo it works on the regular wordpress pages, just not the one the plugin creates. It seems to ignore the title tags the plugin pages are providing. But like I said it works fine with the default wordpress theme. I didn't know if there was a simple fix to disable whatever SEO work Platform Pro is doing. Share this post Link to post Share on other sites
isler45 0 Report post Posted March 14, 2011 I took this code out of the default wordpress theme and put it in the head section of header.php and all the titles are working fine. ` <?php /* * Print the tag based on what is being viewed. */ global $page, $paged; wp_title( '|', true, 'right' ); // Add the blog name. bloginfo( 'name' ); // Add the blog description for the home/front page. $site_description = get_bloginfo( 'description', 'display' ); if ( $site_description && ( is_home() || is_front_page() ) ) echo " | $site_description"; // Add a page number if necessary: if ( $paged >= 2 || $page >= 2 ) echo ' | ' . sprintf( __( 'Page %s', 'twentyten' ), max( $paged, $page ) ); ?> ` I checked and there are no duplicate titles or other meta tags. Do you think this would cause a problem in any way? Not really sure what I am doing though lol. Share this post Link to post Share on other sites
bryan-hadaway 3 Report post Posted March 15, 2011 Thanks for sharing and just gave you your first karma point. The only concern I see might be validation, you might want to check your site through: http://validator.w3.org/ Thanks, Bryan Share this post Link to post Share on other sites