I don't want the archive link in my homepage or singles threads, but only in forumdysplay.
How can i do?
Thanks.
This is a discussion on VBSEO_ARCHIVE_LINKS not in footer within the General Discussion forums, part of the vBSEO SEO Plugin category; I don't want the archive link in my homepage or singles threads, but only in forumdysplay. How can i do? ...
I don't want the archive link in my homepage or singles threads, but only in forumdysplay.
How can i do?
Thanks.
Please use the following in footer template
Code:<if condition="THIS_SCRIPT == 'forumdisplay'"><!--VBSEO_ARCHIVE_LINKS--></if>
Mert Gökçeimam / Crawlability Inc.
vBSEO 3.6.0 Alpha Önizlemesi - Including Like Tree
Unveiling the NEW vBSEO Sitemap Generator 3.0 - available NOW for vBSEO Customers!
Twitter:@Depkac
Personal Blog : Mert Gökçeimam
Thanks, i've tried but don't work, the links appears in the home too.
Try the following:
HTML Code:<if condition="THIS_SCRIPT != 'forumdisplay'"><!--<!--VBSEO_ARCHIVE_LINKS-->--></if>
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 Oleg, now it works
Thanks.
Another question, i want to include the links in a table.
Is this code correct?
Actually don't works.Code:<!---Sitemap----------> <if condition="THIS_SCRIPT != 'forumdisplay'"> <br> <table class="tborder" align="center" border="0" cellpadding="6" cellspacing="1" width="100%"> <thead> <tr> <td class="tcat" colspan="2">SiteMap</td> </tr> </thead> <tbody> <tr> <td class="thead" colspan="2"> </td> </tr> </tbody> <tbody id="collapseobj_forumhome_stats" style=""> <tr> <td class="alt1" width="100%"> <div class="smallfont"> <div> <!--<!--VBSEO_ARCHIVE_LINKS-->--> </div> </div> </td> </tr> </tbody> </table> </if> <!---Fine Sitemap---------->
Thanks again![]()
It should be:
HTML Code:<if condition="THIS_SCRIPT != 'forumdisplay'"> <!--<!--VBSEO_ARCHIVE_LINKS-->--> <else /> <br> <table ....> .. <div><!--VBSEO_ARCHIVE_LINKS--></div> .. </table> </if>
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!
Many many thanks Oleg![]()
You are welcome![]()
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!