vBulletin Search Engine Optimization
This is a discussion on rel="external nofollow" within the Feature Requests forums, part of the vBSEO SEO Plugin category; I'd like to be able to use both of these, but currently with the vbSEO rel=nofollow enabled, I'm not able ...
| |||||||
Enhancing 80 million pages. | Register | FAQ | Members List | Social Groups | Calendar | Search | Today's Posts | Mark Forums Read |
|
#1
| ||||
| ||||
|
I'd like to be able to use both of these, but currently with the vbSEO rel=nofollow enabled, I'm not able to on external links. I have a function placed in vbulletin_global.js that looks like this: Code: function externalLinks() {
if (!document.getElementsByTagName) return;
var anchors = document.getElementsByTagName("a");
for (var i=0; i<anchors.length; i++) {
var anchor = anchors[i];
if (anchor.getAttribute("href") &&
(anchor.getAttribute("rel") == "external" || anchor.getAttribute("rel") == "external nofollow")
)
anchor.target = "_blank";
}
}
window.onload = externalLinks;
With vbSEO one enabled, looks like this: Code: rel="nofollow" href="http://news.yahoo.com" rel="external nofollow"> |
|
#2
| ||||
| ||||
|
Hello, you can add rel="novbseo" tag to these links to exclude them from being processed by vBSEO: <a rel="novbseo" href="http://news.yahoo.com" rel="external nofollow"> You should also manually enable VBSEO_ALLOW_REL_NOVBSEO option in config_vbseo.php file: PHP Code:
__________________ Oleg Ignatiuk / Crawlability Inc. Support Team Launches New DeskPro Powered Tool Enhanced Support at Your Service vBSEO 3.2.0 Launched - Maximum Overdrive for Your Web Traffic! Over 100 Instant SEO Optimizations 6X Traffic - $1400 in One Day with vBSEO! Imagine What the vBSEO Patent Pending Technology Can Do For You. |