Log in

View Full Version : Forum Home Enhancements - My Threads/My Posts Links in Header


vBNinja
04-20-2012, 10:00 PM
This is a very simple template modification to show links for "My Threads" and "My Posts" under the welcome box.

In the Header Template:

Find:

<if condition="$show['pmwarning']"><div><strong><phrase 1="$vbphrase[pmpercent_nav_compiled]">$vbphrase[your_pm_box_is_x_full]</phrase></strong></div></if>
</div>


Replace all of it with:

<if condition="$show['pmwarning']"><div><strong><phrase 1="$vbphrase[pmpercent_nav_compiled]">$vbphrase[your_pm_box_is_x_full]</phrase></strong></div></if>

<div class="memberInfo">
<a href="search.php?$session[sessionurl]do=finduser&u=$bbuserinfo[userid]&starteronly=1">? My Threads</a>
<a href="search.php?$session[sessionurl]do=finduser&u=$bbuserinfo[userid]">? My Posts</a>
</div></div>


Feel free to replace the text to whatever you want!

That's it!

Note: Depending on your style, you might need to fix your search box,
If your searchbox looks weird now, add this to your additional css in the "Main CSS" page for your style:


.loginBox {
height: 28px;
margin-top: 0px;
}


Replace 0px with what best suits your style


Please mark as installed for support!

exel
04-23-2012, 01:50 AM
You don't need that div. >.>

<if condition="$show['pmwarning']"><div><strong><phrase 1="$vbphrase[pmpercent_nav_compiled]">$vbphrase[your_pm_box_is_x_full]</phrase></strong></div></if>
<div>
<a href="search.php?$session[sessionurl]do=finduser&u=$bbuserinfo[userid]&starteronly=1">? My Threads</a>
<a href="search.php?$session[sessionurl]do=finduser&u=$bbuserinfo[userid]">? My Posts</a></div>

You can pretty much add this wherever you want it to show, doesn't have to be header.

<a href="search.php?$session[sessionurl]do=finduser&u=$bbuserinfo[userid]&starteronly=1">? My Threads</a>
<a href="search.php?$session[sessionurl]do=finduser&u=$bbuserinfo[userid]">? My Posts</a>

vBNinja
04-23-2012, 02:09 AM
You don't need that div. >.>

<if condition="$show['pmwarning']"><div><strong><phrase 1="$vbphrase[pmpercent_nav_compiled]">$vbphrase[your_pm_box_is_x_full]</phrase></strong></div></if>
<div>
<a href="search.php?$session[sessionurl]do=finduser&u=$bbuserinfo[userid]&starteronly=1">? My Threads</a>
<a href="search.php?$session[sessionurl]do=finduser&u=$bbuserinfo[userid]">? My Posts</a></div>

You can pretty much add this wherever you want it to show, doesn't have to be header.

<a href="search.php?$session[sessionurl]do=finduser&u=$bbuserinfo[userid]&starteronly=1">? My Threads</a>
<a href="search.php?$session[sessionurl]do=finduser&u=$bbuserinfo[userid]">? My Posts</a>

Yes, but my example was to put it underneath the private messages..

exel
04-23-2012, 04:38 AM
I meant this div: <div class="memberInfo">

Should just be <div>

:)

vBNinja
04-23-2012, 10:53 AM
I meant this div: <div class="memberInfo">

Should just be <div>

:)

Tried that first, the text looked bigger than the rest and made it look bad, so i use the memberinfo div to match it

exel
04-24-2012, 02:01 AM
But memberinfo isn't in all the themes, so add that below.

Grab the css for 'memberinfo' and post it, tell people to add it to their additional css. :)

vBNinja
05-01-2012, 12:58 PM
But memberinfo isn't in all the themes, so add that below.

Grab the css for 'memberinfo' and post it, tell people to add it to their additional css. :)

True, thanks for the tip

bjkinzluvr
07-11-2012, 03:31 PM
Is there any way to do this in vBulletin 4.2 but add it as a link to the Quick Links menu?