| Comments |
 Re: How I Add Today Posts In Nav Bar
|
|
Sorry not show I understand
|
|
DWho [ Sat 14 Mar, 2009 13:31 ]
|
 |
 Re: How I Add Today Posts In Nav Bar
|
Sorry not show I understand
i want a button near to the recent topic to get daily posts
|
|
dellmanx [ Sat 14 Mar, 2009 13:37 ]
|
 |
 Re: How I Add Today Posts In Nav Bar
|
|
what about "Recents" block on portal? ain't that enough?
|
|
Guanaco [ Sat 14 Mar, 2009 16:25 ]
|
 |
 Re: How I Add Today Posts In Nav Bar
|
what about "Recents" block on portal? ain't that enough? 
NOp it is different that the recent topics look for new topic (getnew command) i want getdaily command
|
|
dellmanx [ Sat 14 Mar, 2009 16:29 ]
|
 |
 Re: How I Add Today Posts In Nav Bar
|
|
you want a link to recent.php?mode=today ? right?
|
|
New Player [ Sat 14 Mar, 2009 17:48 ]
|
 |
 Re: How I Add Today Posts In Nav Bar
|
you want a link to recent.php?mode=today ? right?
yeap
|
|
dellmanx [ Sat 14 Mar, 2009 18:39 ]
|
 |
 Re: How I Add Today Posts In Nav Bar
|
open
templates/your_template/overall_header.tpl
find
<a href="{FULL_SITE_PATH}{U_SEARCH}">{L_SEARCH}</a> <img src="{FULL_SITE_PATH}{IMG_MENU_SEP}" alt="" />
<a href="{FULL_SITE_PATH}{U_FAQ}">{L_FAQ}</a> <img src="{FULL_SITE_PATH}{IMG_MENU_SEP}" alt="" />
before add
<a href="{FULL_SITE_PATH}{U_RECENTDELLMANX}">{L_RECENTDELLMANX}</a> <img src="{FULL_SITE_PATH}{IMG_MENU_SEP}" alt="" />
open
includes/page_header.php
find
'U_CPL_SENTBOX' => append_sid('privmsg.' . $phpEx . '?folder=sentbox'),
'U_CPL_DRAFTS' => append_sid('drafts.' . $phpEx),
'U_CPL_ZEBRA' => append_sid(PROFILE_MG . '?mode=zebra&zmode=friends'),
after add
'U_RECENTDELLMANX' => append_sid('recent.' . $phpEx . '?mode=today'),
'L_RECENTDELLMANX' => $lang['RECENTDELLMANX'],
open
language/your_language/lang_main.php
find
before add
$lang['RECENTDELLMANX'] = 'Posts Today';
not tested but should be work
Edited by New Player, Sat 14 Mar, 2009 19:15: correct a little but a fatal mistake
|
|
New Player [ Sat 14 Mar, 2009 19:13 ]
|
 |
 Re: How I Add Today Posts In Nav Bar
|
DWho's suggestion should do the trick.
Quick question, are you using Icy Phoenix .27c? I'm not sure if you knew or not, but we're about to put out a release candidate package for the next Icy Phoenix version. After a second release candidate, assuming there are two RC's, we'll be releasing the complete next version. All the changes you make now will have to be reapplied to the next version. After the final release, we'll only be supporting the new Icy Phoenix, not .27c.
I just don't want you to work super hard on something only to see you'll have to do it all over again on a new version.
It's something to consider. 
|
|
Chaotic [ Sun 15 Mar, 2009 00:28 ]
|
 |
 Re: How I Add Today Posts In Nav Bar
|
DWho's suggestion should do the trick.
Quick question, are you using Icy Phoenix .27c? I'm not sure if you knew or not, but we're about to put out a release candidate package for the next Icy Phoenix version. After a second release candidate, assuming there are two RC's, we'll be releasing the complete next version. All the changes you make now will have to be reapplied to the next version. After the final release, we'll only be supporting the new Icy Phoenix, not .27c.
I just don't want you to work super hard on something only to see you'll have to do it all over again on a new version.
It's something to consider. 
Yes the 27c is t
ok then i wait to see the final ver and then so the changes
|
|
dellmanx [ Sun 15 Mar, 2009 12:51 ]
|
 |
|
|