vBulletin Search Engine Optimization
This is a discussion on Exclude LinkVault links from Analytics & rel=nofollow adds within the Troubleshooting forums, part of the vBSEO SEO Plugin category; Hi I want to start using LinkVault again but I have set vBSEO that every external link automaticly gets the ...
| |||||||
Enhancing 80 million pages. | Register | FAQ | Members List | Social Groups | Calendar | Search | Today's Posts | Mark Forums Read |
|
#1
| ||||
| ||||
|
Hi I want to start using LinkVault again but I have set vBSEO that every external link automaticly gets the analytics and rel=nofollow code added. Is there a way to exclude the linkvault links from these automatic edits? Thanks StarBuG |
|
#2
| ||||
| ||||
|
Add rel="novbseo" to the links. BTW, LinkVault type things have been found to hurt a site's rankings.
__________________ Keith Cohen / 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. My Personal Sites: My Blog | GPS Discussion Forum |
|
#3
| ||||
| ||||
|
I can't add rel="novbseo" to the links because they are dynamically created. I enter a variable into my footer and a php file requests the links and writes them into a text file. The links are static for every page (which is why lv does not hurt) but you get different links for every page. Any other options? If there is none, my suggestion would be to have a tag like: <!-- no vbSEO start --> everything in here is not touched by vBSEO <!--no vBSEO end --> StarBuG |
|
#4
| ||||
| ||||
|
Hello, you should modify your LinkVault php code to add rel="novbseo" to those links or disable corresponding options in vbseocp.
__________________ 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. |
|
#5
| ||||
| ||||
|
I have looked into the file and the links seem to be dynamicly pulled from the linkvault server. There is nothing that creates a <a href link in this php file. I am no php expert, maybe one of you could have a look? I have attached the php file. Would it technically be possible, as suggestion, to have a <!-- no vbSEO start --> html tag and let vBSEO ignore everything between the start and end tag? Thanks StarBuG |
|
#6
| ||||
| ||||
| This has been suggested/discussed in the past, but was found to be too much of a performance hit. The suggestion can be revisited though.
__________________ Keith Cohen / 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. My Personal Sites: My Blog | GPS Discussion Forum |
|
#7
| ||||
| ||||
|
That sounds good. Thank you. |
|
#8
| ||||
| ||||
|
Try to modify the code: FIND: PHP Code: 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. |
|
#9
| ||||
| ||||
|
Works like a charm. Thanks for this great support StarBuG |
|
#10
| ||||
| ||||
|
You are welcome!
__________________ 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. |
|
#11
| ||||
| ||||
|
Hi I still have trouble getting the site active in LinkVault. Somehow their validation script is not accepting my links. Is there a way to exclude the novbseo from the test links? Maybe this is the problem?? T2DMan from New Zealand Restaurants Guide & Food Reviews-Forum-Time2Dine NZ said the following: Quote:
Thanks StarBuG ps: is no one else using linkvault? Last edited by StarBuG; 07-29-2007 at 06:46 AM. |
|
#12
| ||||
| ||||
|
T2DMan gave me a solution for removing the novbseo from the links: Quote:
|
|
#13
| ||||
| ||||
|
rel="novbseo" should be removed by vBSEO automatically. Make sure that it is added right after starting <a> tag: correct: HTML Code: <a rel="novbseo" href=""> HTML Code: <a href="" rel="novbseo">
__________________ 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. |
|
#14
| ||||
| ||||
|
It is not removed from links like <a rel="novbseo" href="#"> That is why the code above is needed. but slightly modifed then above: Code: $output=str_replace("rel=\"novbseo\"","",$output);
Thx StarBuG |