PDA

View Full Version : add breadcrumb to bottom of posts


tjad
02-13-2005, 07:00 PM
to send back to fourum you're in. ie at the bottom of this post have a link that says MOdification request. That way you don't have to scroll all the way to the top to get back.

monkeybars
02-16-2005, 01:03 PM
In SHOWTHREAD template find:

<if condition="$show['pagenav']"><td align="$stylevar[right]">$pagenav</td></if>
</tr>
</table>
<!-- / controls below postbits -->

after this, add:

<div class="smallfont" align="center">
<a href="$vboptions[forumhome].php?$session[sessionurl]">$vboptions[bbtitle]</a></span> $navbits[breadcrumb]</div>

Adjust html to suit your needs.

tjad
04-08-2005, 05:53 AM
Thanks that worked beautifully.

wolfyman
04-23-2005, 07:22 PM
Hey, I have one more to add to this. I want a "New Thread" button ext to the reply button at the bottom of the threads...

I tried adding this

<td class="smallfont"><if condition="$show['newthreadlink']"><a href="newthread.php?$session[sessionurl]do=newthread&amp;f=$foruminfo[forumid]"><img src="$stylevar[imgdir_button]/newthread.gif" alt="$vbphrase[post_new_thread]" border="0" /></a><else />&nbsp;</if></td>


below this


<td class="smallfont"><a href="newreply.php?$session[sessionurl]do=newreply&amp;noquote=1&amp;p=$LASTPOSTID"><if condition="$show['closethread']"><img src="$stylevar[imgdir_button]/reply.gif" alt="$vbphrase[reply]" border="0" /><else /><img src="$stylevar[imgdir_button]/threadclosed.gif" alt="$vbphrase[closed_thread]" border="0" /></a></if></td>


but I got no love...

Thanks :)