This has probably been asked before but I can't find it for some reason.
Are there any delimeters I can put around code in my templates if I want vbSEO to totally ignore that section of code and leave it as-is?
This is a discussion on Exclude code from vbSEO? within the General Discussion forums, part of the vBSEO SEO Plugin category; This has probably been asked before but I can't find it for some reason. Are there any delimeters I can ...
This has probably been asked before but I can't find it for some reason.
Are there any delimeters I can put around code in my templates if I want vbSEO to totally ignore that section of code and leave it as-is?
The code parts exclusion is currently not implemented for performance reasons. However you can enable the VBSEO_ALLOW_REL_NOVBSEO option in config_vbseo.php and use rel="novbseo" attribute to exclude it from processing to achive the same results.
// ****** PREVENT vBSEO FROM REWRITING SPECIFIC LINKS ******
// Enable this feature to prevent vBSEO from rewriting links when rel="novbseo" is added between
// the '<a' and the 'href=' (i.e <a rel="novbseo" href=/thispage.php)
define('VBSEO_ALLOW_REL_NOVBSEO', 0);
Oleg Ignatiuk / Crawlability Inc.
Security vbulletin - Patch Level for all supported versions released!
Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!
Thanks. So will that also prevent it from putting rel="nofollow" on those links?
That's actually what I'm trying to achieve. I have it set to add rel="nofollow" to all external links, but there's one block of links that I would like it to skip.
Thanks
Hm. in the recent vBSEO version rel="novbseo" disables URL rewrites and rel=nofollow changes for internal links. The next version of vBSEO will also disable rel=nofollow changes for external sites in these cases.![]()
Oleg Ignatiuk / Crawlability Inc.
Security vbulletin - Patch Level for all supported versions released!
Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!
Great. Thanks.