I just installed vbseo and now I have these icons for digg, delicous, etc. on the bottom of every post and would like to remove those. How do I go about doing this?
This is a discussion on How To Get Rid Of Icons On Bottom Of Each Post? within the General Discussion forums, part of the vBSEO SEO Plugin category; I just installed vbseo and now I have these icons for digg, delicous, etc. on the bottom of every post ...
I just installed vbseo and now I have these icons for digg, delicous, etc. on the bottom of every post and would like to remove those. How do I go about doing this?
You can disable via:
vbseoCP - > other enhancements - > social bookmarking.
Brian Cummiskey / Crawlability Inc.
Security vbulletin - Patch Level for all supported versions released!
Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!
I don't want to disable this site wide, but we do have some private company forums which I don't want these displayed. Anyway to selectively turn these off by forum?
Thanks!
Not easily.
You will need to make a template edit, place the <!--VBSEO_BOOKMARKS--> where you want it in your template, and then conditional-ize that edit with your forums you want to show it in (or negate the conditional and list the ones you DONT want to show in:
so, your code will be something like this to show only in forums 1,2,3
If you are on vb4, change the if and /if to the vb:if and /vb:if of course.Code:<if condition="in_array($forum['forumid'], array(1,2,3))"> <!--VBSEO_BOOKMARKS--> </if>
Brian Cummiskey / Crawlability Inc.
Security vbulletin - Patch Level for all supported versions released!
Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!
Hey Brian,
Thanks for the fast reply. I'll give this a try.