[REQ] Today's Posts | Mark Forums Read

omanson

New Member
PLZ how i can do like this

attachment.php



and this

attachment.php



Thanks For Help Me
 
Tags can be turned on in 3.7 in the ACP - vBulletin Options - Tagging Options.

The Today's Posts and Mark Forums Read links are simple template changes:

In your navbar template, find:

Code:
<phrase 1="$pmbox[lastvisitdate]" 2="$pmbox[lastvisittime]">$vbphrase[last_visited_x_at_y]</phrase><br />

Paste this code after it:

Code:
<a href="search.php?$session[sessionurl]do=getdaily" rel="nofollow">$vbphrase[todays_posts]</a> | <a href="forumdisplay.php?$session[sessionurl]do=markread" rel="nofollow">$vbphrase[mark_forums_read]</a><br />


For the xHTML & CSS buttons, go to your footer template and find:

Code:
$vboptions[copyrighttext]
	</div>
</div>

<br />

After, paste this:

Code:
<div align="center">
<a href="http://validator.w3.org/check?uri=referer"><img style="border:0;width:16px;height:16px"
        src="images/misc/xhtml_valid.gif"
        alt="Valid XHTML 1.0 Transitional" /></a>

<a href="http://jigsaw.w3.org/css-validator/check/referer">
    <img style="border:0;width:16px;height:16px"
        src="images/misc/css_valid.gif"
        alt="Valid CSS!" />
</a>
</div>

You will need images for your misc folder.
 
Back
Top