I am trying to wrap a <h3> tag around the thread title on the ForumDisplay but I cant seem to find the variable in which I need to wrap it around. Any clues?
This is a discussion on What variabl outputs the Thread Title on ForumDisplay? within the Template Modifications forums, part of the vBulletin SEO Discussion category; I am trying to wrap a <h3> tag around the thread title on the ForumDisplay but I cant seem to ...
I am trying to wrap a <h3> tag around the thread title on the ForumDisplay but I cant seem to find the variable in which I need to wrap it around. Any clues?
$forum[title]
in all the forumhome_forumbit templates.
I meant the actual threads you click to go to showthread.
Like the above when you see it on ForumDisplay. You click that link and it takes you to this thread.What variabl outputs the Thread Title on ForumDisplay?
OH. Thread titles.
That's in the threadbit template. $thread[title_editable]
I was afraid so. When I wrap a <h3> around it it isnt working correctly
It outputs this: <h3><a name="vB::AJAX"></a></h3>
It always outputs thatYou need to wrap it around this in the threadbit template:
Make sure you set the H3 to a smaller font in css first.<a href="showthread.php?$session[sessionurl]t=$thread[threadid]$thread[highlight]" id="thread_title_$thread[realthreadid]"<if condition="$show['gotonewpost']"> style="font-weight:bold"</if>>$thread[threadtitle]</a>
Figured it outIts: $thread[threadtitle]