PhotoPlog

PhotoPlog (http://www.photoplog.com/forum/index.php)
-   Feedback & Suggestions (http://www.photoplog.com/forum/forumdisplay.php?f=3)
-   -   Please give us a =getnew on this forums (http://www.photoplog.com/forum/showthread.php?t=239)

Loco.M 05-12-2006 06:44 AM

Please give us a =getnew on these forums
 
Can you Please make the navbar link =getnew not =getdaily :confused:

or at least add a getnew link in the quick links..

I can't make it here every day, but I click the recent post, and I see 2 threads.. but I look at the forum index and see several forums with new post :(

it would be helpfull to those how can't make it here everyday to see if a question or new feature has been talked about..


Please do consider this, or tell me where a getnew "new post" link is..

thank you
-loco

Morgan 05-12-2006 03:03 PM

Sure, there's now a JavaScript drop down menu in the navbar area.

Loco.M 05-13-2006 03:26 AM

u tha man :)

thanx

UncoderMom 06-21-2006 05:16 AM

Ooooh...may I have that bit of code :) or a link to the hack purdy please!?

MikeD 06-21-2006 10:05 AM

Quote:

Originally Posted by UncoderMom
Ooooh...may I have that bit of code :) or a link to the hack purdy please!?

It's no secret to add them in your Navbar. Really simple and no big deal ;). Look here...

Responsible is this one:

Get Daily Posts
PHP Code:

<td class="vbmenu_option"><a
href
="search.php?$session[sessionurl_q]do=getdaily">$vbphrase[posts_new_today]</a></td

Get New Posts
PHP Code:

<td class="vbmenu_option"><a href="search.php?$session[sessionurl_q]do=getnew">$vbphrase[posts_new]</a></td

Last 5 Days
PHP Code:

<td class="vbmenu_option"><a href="search.php?$session[sessionurl_q]do=getdaily&amp;days=5">$vbphrase[posts_last_5_days]</a></td

Last 10 Days
PHP Code:

<td class="vbmenu_option"><a href="search.php?$session[sessionurl_q]do=getdaily&amp;days=10">$vbphrase[posts_last_10_days]</a></td

Don't forget to create / edit the phrases "[posts_last_5_days]" & "[posts_last_10_days]".

Start all above codes with
PHP Code:

<if condition="$show['member']"

Template navbar
Find: accesskey="4" rel="nofollow">$vbphrase[advanced_search]
PHP Code:

</tr>
        <
tr>
            <
td class="vbmenu_option"><a href="search.php$session[sessionurl_q]" accesskey="4" rel="nofollow">$vbphrase[advanced_search]</a></td>
        </
tr

Add below:
PHP Code:

<if condition="$show['member']"><tr><td class="vbmenu_option"><a href="search.php?$session[sessionurl_q]do=getnew">$vbphrase[posts_new]</a></td></tr></if>
<
tr><td class="vbmenu_option"><a
href
="search.php?$session[sessionurl_q]do=getdaily">$vbphrase[posts_new_today]</a></td></tr>

<
tr><td class="vbmenu_option"><a href="search.php?$session[sessionurl_q]do=getdaily&amp;days=5">$vbphrase[posts_last_5_days]</a></td></tr>

<
td class="vbmenu_option"><a href="search.php?$session[sessionurl_q]do=getdaily&amp;days=10">$vbphrase[posts_last_10_days]</a></td>
</if> 

How it looks like on my forum for both languages German & English. -Mike

http://www.mdichte-web.de/Forum Hond...earch Menu GERhttp://www.mdichte-web.de/Forum Hond...earch Menu ENG


All times are GMT. The time now is 08:26 PM.

Powered by vBulletin® Version 3.8.5
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.