WPIntell

Source evidence

[Plugin: Basic-SEO] Add

Basic-SEO · support · 2010-09-13T11:17:00+00:00

mixedsentiment
highseverity
0.95relevance
13replies
Evidence linked to opportunitycommercial context

Proof Health

Open evidence

Commercial opportunities need traceable source links before they are treated as build-worthy.

5 / 34 rows with source links

14.7% of this page's analysis has direct source links.

0 build-decision rows missing links

0 rows here require auditable proof before promotion.

29 rows with no attached evidence

0 rows have source counts but still need direct links.

Conversation

support
Trollkjeft resolved
I really liked the simplicity of you plugin Basic SEO, but it added a strange link on top of my <body> tag which read ‘Continue Reading -> />’, just as its code was flawed. Maybe I have the wrong setup, but I had to remove it sadly. If this is fixed, I’d be happy to try it again. Glad you liked the simplicity of the plugin! 🙂 It shouldn’t have added that link really, could you supply me with a link to your site so I can see an example of the problem? Actually, I can’t recreate the problem I realize now. I installed it again and it seems to work now 🙂 A question though, on my website, http://www.designbysvalander.com , the Page title is doubled in the browser window toplist. Is there anyway to avoid that, so it only reads ‘design by svalander’ once? Thanks for your quick reply! No! It’s back! Sorry… 🙁 If you go to my page, at http://www.designbysvalander.com and further to Blog -> Tips in the top menu, and then press Continue Reading (the eye-catching pink button in the bottom right corner). Then the top black list containing the menu system is forced down with a broken html code snipet, saying ‘”/>’. I’ll keep the error there until you respond, because I’d really like to know why this happens (in order to continue using your plugin). Also, if you could find out a solution on my question above, regarding the doubled site title, I’d be happy! Best regards and thanks for a good plugin! /Chris Hi Chris, I’ve tried accessing your site but all I get is the following error message: Fatal error: Call to undefined function get_header() in /customers/designbysvalander.com/designbysvalander.com/httpd.www/index.php on line 16 If your seeing the title doubled up, make sure you only have wp_title() between the title html tags as seen below: <title><?php wp_title(); ?></title> Jon Hi Jon, Sadly my web hotel is a mess at the moment and I’m trying to get through their customer support. But, if you look at my beta site (which also have your plugin) at http://portfolio.arahant.se/category/blog/ and press the pink button i the right bottom part of the page which reads ‘Continue reading’ you see the same error occur. When clicking on that button, the black menu and the page will jump down appr 50 px and a broken HTML link will appear in the top left corner. It reads "/> . DO you see it? Regards, Chris Ah yes I see the problem. You have a link in your post excerpt which is causing the description metatag to be terminated prematurely. I’ll add support for this in the plugin and push out a new version as soon as I can. Thanks for bringing this to my attention Chris. 🙂 Excellent (and no problems), I’m just happy to be able to help! I look forward to the plugin update! Also, did you see my question above regarding the double Site title? Is there any way to fix that? On my portfolio there, http://portfolio.arahant.se/category/blog/ , it reads ‘Arahant Visual DesignArahant Visual Design’. Do you see it? It’s cosmetic, I know (unless the forced word comination becomes impossible to read for search engine bots), but as a designer I tend to get stuck on those things. Hope you understand. Good job and thanks for your quick reply! /C Hi Chris, To fix the duplicated title edit the header.php for your theme and make sure you only have wp_title() between the title html tags as seen below: <title><?php wp_title(); ?></title> Remove any other text from between the title html tags. Oh and I’ve released a new version of the plugin that should fix the other problem you were having. Let me know if you still have a problem. Jon Excellent, thanks! About the title code: should I just remove all code that comes with WP 3.0 that is there by default? <title><?php /* * Print the <title> 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 ) ); ?> </title> Sorry if I am a bit tedious, I’m not that good at PHP. Would very much appreciate your help! If you are using the Twentyten theme that comes with WordPress then yes remove the php code between the <title> tags and replace it with just: <?php wp_title(); ?> Great Jon, it works fine now. Thanks! Glad to hear it. 🙂

Comments

13 shown
jonbullock 2010-09-13T21:18:00+00:00

Glad you liked the simplicity of the plugin! 🙂 It shouldn’t have added that link really, could you supply me with a link to your site so I can see an example of the problem?

Trollkjeft 2010-09-14T13:02:00+00:00

Actually, I can’t recreate the problem I realize now. I installed it again and it seems to work now 🙂 A question though, on my website, http://www.designbysvalander.com , the Page title is doubled in the browser window toplist. Is there anyway to avoid that, so it only reads ‘design by svalander’ once? Thanks for your quick reply!

Trollkjeft 2010-09-14T14:02:00+00:00

No! It’s back! Sorry… 🙁 If you go to my page, at http://www.designbysvalander.com and further to Blog -> Tips in the top menu, and then press Continue Reading (the eye-catching pink button in the bottom right corner). Then the top black list containing the menu system is forced down with a broken html code snipet, saying ‘”/>’. I’ll keep the error there until you respond, because I’d really like to know why this happens (in order to continue using your plugin). Also, if you could find out a solution on my question above, regarding the doubled site title, I’d be happy! Best regards and thanks for a good plugin! /Chris

jonbullock 2010-09-15T21:34:00+00:00

Hi Chris, I’ve tried accessing your site but all I get is the following error message: Fatal error: Call to undefined function get_header() in /customers/designbysvalander.com/designbysvalander.com/httpd.www/index.php on line 16 If your seeing the title doubled up, make sure you only have wp_title() between the title html tags as seen below: <title><?php wp_title(); ?></title> Jon

Trollkjeft 2010-09-16T13:09:00+00:00

Hi Jon, Sadly my web hotel is a mess at the moment and I’m trying to get through their customer support. But, if you look at my beta site (which also have your plugin) at http://portfolio.arahant.se/category/blog/ and press the pink button i the right bottom part of the page which reads ‘Continue reading’ you see the same error occur. When clicking on that button, the black menu and the page will jump down appr 50 px and a broken HTML link will appear in the top left corner. It reads "/> . DO you see it? Regards, Chris

jonbullock 2010-09-16T22:36:00+00:00

Ah yes I see the problem. You have a link in your post excerpt which is causing the description metatag to be terminated prematurely. I’ll add support for this in the plugin and push out a new version as soon as I can. Thanks for bringing this to my attention Chris. 🙂

Trollkjeft 2010-09-17T07:56:00+00:00

Excellent (and no problems), I’m just happy to be able to help! I look forward to the plugin update! Also, did you see my question above regarding the double Site title? Is there any way to fix that? On my portfolio there, http://portfolio.arahant.se/category/blog/ , it reads ‘Arahant Visual DesignArahant Visual Design’. Do you see it? It’s cosmetic, I know (unless the forced word comination becomes impossible to read for search engine bots), but as a designer I tend to get stuck on those things. Hope you understand. Good job and thanks for your quick reply! /C

jonbullock 2010-09-18T23:50:00+00:00

Hi Chris, To fix the duplicated title edit the header.php for your theme and make sure you only have wp_title() between the title html tags as seen below: <title><?php wp_title(); ?></title> Remove any other text from between the title html tags. Oh and I’ve released a new version of the plugin that should fix the other problem you were having. Let me know if you still have a problem. Jon

Trollkjeft 2010-09-19T10:44:00+00:00

Excellent, thanks! About the title code: should I just remove all code that comes with WP 3.0 that is there by default? <title><?php /* * Print the <title> 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 ) ); ?> </title>

Trollkjeft 2010-09-19T10:47:00+00:00

Sorry if I am a bit tedious, I’m not that good at PHP. Would very much appreciate your help!

jonbullock 2010-09-19T14:20:00+00:00

If you are using the Twentyten theme that comes with WordPress then yes remove the php code between the <title> tags and replace it with just: <?php wp_title(); ?>

Trollkjeft 2010-09-20T17:37:00+00:00

Great Jon, it works fine now. Thanks!

jonbullock 2010-09-20T22:11:00+00:00

Glad to hear it. 🙂