Please tell me how i can do the following.
remove FAQ,Calender from your navbar for guests only
add H1 Tags in your forum threads
use vBSEO New feature (Virtual HTML Display) in your "What's going on" section
This is a discussion on Edit help within the Template Modifications forums, part of the vBulletin SEO Discussion category; Please tell me how i can do the following. remove FAQ,Calender from your navbar for guests only add H1 Tags ...
Please tell me how i can do the following.
remove FAQ,Calender from your navbar for guests only
add H1 Tags in your forum threads
use vBSEO New feature (Virtual HTML Display) in your "What's going on" section
1) wrap your navbar links in contionals.
ie, find in navbar template:
<td class="vbmenu_control"><a href="faq.php$session[sessionurl_q]" accesskey="5">$vbphrase[faq]</a></td>
and replace with
<if condition="$show['member']">
<td class="vbmenu_control"><a href="faq.php$session[sessionurl_q]" accesskey="5">$vbphrase[faq]</a></td>
</if>
do the same for the calendar.
h1's : Important SEO Tip: Essential H1 Tags Missing in vBulletin Default Templates
virtual html: Virtual HTML Display - What is it?
The font is so big.
How can i make it smaller?
Code:<if condition="THIS_SCRIPT == 'forumdisplay'"> $foruminfo[title_clean] <else /> <if condition="THIS_SCRIPT == 'showthread'"> <h1>$thread[title]</h1> <else /> <if condition="THIS_SCRIPT == 'group'"> <h1>$custompagetitle</h1> <else /> <if condition="THIS_SCRIPT == 'album'"> <h1>$custompagetitle</h1> <else /> <if condition="THIS_SCRIPT == 'tags'"> <h1>$tag[tagtext]</h1> <else /> <if condition="THIS_SCRIPT == 'blog'"> <h1>$pagetitle</h1> <else /> <if condition="THIS_SCRIPT == 'member'"> <h1>$userinfo[username]</h1> <else /> <h1>$vboptions[bbtitle]</h1> </if> </if> </if> </if> </if> </if> </if>
you can add style rules to the main CSS file
h1 { font-size: 12px; }
for example.
Sorry i didn't really get that.
Another problem is that i tried to find the code given in that thread.
I cant find most of those for example the header one.
i have no idea what you just asked. please rephrase.
go to stylemanager-> edit templates select main CSS from the drop down
scroll all the way to the bottom, and enter that rule on a new line in the last textarea
you can do the same thing for h2
Thanks brian and lastly for the virtual htm.
This is what i did and i don't see any changes.
<!--VBSEO_VIRTUAL_HTML-->
<!-- what's going on box -->
!-- end what's going on box -->
<!--/VBSEO_VIRTUAL_HTML-->
One more thing. I would like to remove the title on forumhome?
Could you edit the code and give me?
Code:<if condition="THIS_SCRIPT == 'forumdisplay'"> $foruminfo[title_clean] <else /> <if condition="THIS_SCRIPT == 'showthread'"> <h1>$thread[title]</h1> <else /> <if condition="THIS_SCRIPT == 'group'"> <h1>$custompagetitle</h1> <else /> <if condition="THIS_SCRIPT == 'album'"> <h1>$custompagetitle</h1> <else /> <if condition="THIS_SCRIPT == 'tags'"> <h1>$tag[tagtext]</h1> <else /> <if condition="THIS_SCRIPT == 'blog'"> <h1>$pagetitle</h1> <else /> <if condition="THIS_SCRIPT == 'member'"> <h1>$userinfo[username]</h1> <else /> <h1>$vboptions[bbtitle]</h1> </if> </if> </if> </if> </if> </if> </if>