Page 1 of 2
Recent activity empty..
Posted: 07 Jul 2012, 02:25
by Solidjeuh
Elooow
I have this little problem on my forum..
And don't know how to fix this..
Everything works, Except that recent activity..
Recent activity empty..
Posted: 07 Jul 2012, 05:12
by Stoker
Looks like you have it working now?
Recent activity empty..
Posted: 07 Jul 2012, 06:03
by Solidjeuh
No not really. It's on local host (test forum)
Checked all the edits, could not find anything wrong.. real strange.
It's on we_clearblue style
http://www.phpbb.com/customise/db/style/we_clearblue/
Recent activity empty..
Posted: 09 Jul 2012, 06:35
by Solidjeuh
Recent activity empty..
Posted: 09 Jul 2012, 07:36
by Stoker
How is it supposed to work with 5 recent topics when the board only have 1 topic?
You will also have to adapt it to the specific style you are using.
Recent activity empty..
Posted: 09 Jul 2012, 07:43
by Solidjeuh
I created 5 more topics
And this is what it shows:
I checked all edits, there all good..
Recent activity empty..
Posted: 09 Jul 2012, 08:02
by Stoker
You have this in overall_header: row_height : '120px',
Set it back to default.
Recent activity empty..
Posted: 09 Jul 2012, 08:05
by Solidjeuh
Recent activity empty..
Posted: 09 Jul 2012, 08:14
by Stoker
Looks great
Try this for recent_active_body.html:
Code: Select all
<!-- IF S_TS_JSSCROLL and TS_JSSCROLL_NAVIGATION and not S_TS_TICKER -->
<div style="text-align:right; padding-right:10px;"><a href="#" title="{L_PREVIOUS_SCROLL}" id="ticker-previous"><img src="{ROOT_PATH}images/player_rew.png" width="16" height="16" alt="{L_PREVIOUS_SCROLL}" /></a> <a href="#" title="{L_NEXT_SCROLL}" id="ticker-next"><img src="{ROOT_PATH}images/player_fwd.png" width="16" height="16" alt="{L_NEXT_SCROLL}" /></a> <a href="#" title="{L_STOP_SCROLL}" id="stop"><img src="{ROOT_PATH}images/player_pause.png" width="16" height="16" alt="{L_STOP_SCROLL}" /></a> <a href="#" title="{L_START_SCROLL}" id="start"><img src="{ROOT_PATH}images/player_play.png" width="16" height="16" alt="{L_START_SCROLL}" /></a></div>
<!-- ENDIF -->
<div class="forabg">
<div class="inner"><span class="corners-top"><span></span></span>
<ul class="topiclist">
<li class="header">
<dl class="icon">
<dt>{TSRAT_NUMBER} {L_RECENT_ACTIVE}</dt>
<dd class="topics">{L_REPLIES}</dd>
<dd class="posts">{L_VIEWS}</dd>
<dd class="lastpost"><span>{L_LAST_POST}</span></dd>
</dl>
</li>
</ul>
<ul <!-- IF S_TS_JSSCROLL and not S_TS_TICKER -->id="vertical-ticker" <!-- ELSEIF S_TS_TICKER and not S_TS_JSSCROLL -->id="news" <!-- ENDIF -->class="topiclist forums">
<!-- IF S_TS_TICKER and not S_TS_JSSCROLL -->
<li class="row">
<!-- BEGIN recent_active -->
<dl class="icon" style="background-image: url({ROOT_PATH}images/starimg.png); background-repeat: no-repeat;">
<dt>
<a href="{recent_active.U_FIRST_TOPIC}" class="forumtitle">{recent_active.TOPIC_TITLE}</a><br />
{L_POST_BY_AUTHOR} <a style="font-weight:bold; color: #{recent_active.TOPIC_FIRST_POSTER_COLOUR};" href="{recent_active.USERNAME_FIRST}">{recent_active.TOPIC_FIRST_POSTER_NAME}</a> {L_IN} <a href="{recent_active.FORUM_URL}">{recent_active.FORUM_NAME}</a> {recent_active.TOPIC_TIME}
</dt>
<dd class="topics">{recent_active.TOPIC_REPLIES}</dd>
<dd class="posts">{recent_active.TOPIC_VIEWS}</dd>
<dd class="lastpost"><span>
{L_POST_BY_AUTHOR} <a style="font-weight:bold; color: #{recent_active.TOPIC_LAST_POSTER_COLOUR};" href="{recent_active.USERNAME_LAST}">{recent_active.TOPIC_LAST_POSTER_NAME}</a> <a href="{recent_active.U_LAST_TOPIC}">{LAST_POST_IMG}</a><br />{recent_active.TOPIC_LAST_POST_TIME}</span>
</dd>
</dl>
<!-- END recent_active -->
</li>
<!-- ELSE -->
<!-- BEGIN recent_active -->
<li class="row">
<dl class="icon" style="background-image: url({ROOT_PATH}images/starimg.png); background-repeat: no-repeat;">
<dt>
<a href="{recent_active.U_FIRST_TOPIC}" class="forumtitle">{recent_active.TOPIC_TITLE}</a><br />
{L_POST_BY_AUTHOR} <a style="font-weight:bold; color: #{recent_active.TOPIC_FIRST_POSTER_COLOUR};" href="{recent_active.USERNAME_FIRST}">{recent_active.TOPIC_FIRST_POSTER_NAME}</a> {L_IN} <a href="{recent_active.FORUM_URL}">{recent_active.FORUM_NAME}</a> {recent_active.TOPIC_TIME}
</dt>
<dd class="topics">{recent_active.TOPIC_REPLIES}</dd>
<dd class="posts">{recent_active.TOPIC_VIEWS}</dd>
<dd class="lastpost"><span>
{L_POST_BY_AUTHOR} <a style="font-weight:bold; color: #{recent_active.TOPIC_LAST_POSTER_COLOUR};" href="{recent_active.USERNAME_LAST}">{recent_active.TOPIC_LAST_POSTER_NAME}</a> <a href="{recent_active.U_LAST_TOPIC}">{LAST_POST_IMG}</a><br />{recent_active.TOPIC_LAST_POST_TIME}</span>
</dd>
</dl>
</li>
<!-- END recent_active -->
<!-- ENDIF -->
</ul>
<span class="corners-bottom"><span></span></span></div>
</div>
Recent activity empty..
Posted: 09 Jul 2012, 08:18
by Solidjeuh
Still nothing