cheat-master30
10-02-2008, 10:00 PM
Since vBulletin Blog 2.0 Beta 2 has been released, I have noticed there is no general link to the blog.php page itself on the navbar. So what this very simple, one or two line mod does is just that, add exactly one link to the menu which goes to the root blog.php page (the one with featured entries and the like).
Find in blog_navbar_link:
<if condition="$show['blog_search']">
<tr>
<td class="vbmenu_option"><a href="blog_search.php?$session[sessionurl]do=search">$vbphrase[search_blogs]</a></td>
</tr>
</if>
Add after:
<tr>
<td class="vbmenu_option">
<a href="blog.php">Blog Portal</a>
</td>
</tr>
That's it. It should be default, but it isn't, so I added it.
Find in blog_navbar_link:
<if condition="$show['blog_search']">
<tr>
<td class="vbmenu_option"><a href="blog_search.php?$session[sessionurl]do=search">$vbphrase[search_blogs]</a></td>
</tr>
</if>
Add after:
<tr>
<td class="vbmenu_option">
<a href="blog.php">Blog Portal</a>
</td>
</tr>
That's it. It should be default, but it isn't, so I added it.