Page 1 of 1
Topic Stats Page
Posted: 30 Jul 2011, 22:20
by Stoker
Title: Topic Stats Page
Version: 1.0.0
Author: Stoker
Description: This modification for phpbb3 will add a Topic Stats page containing all Topics from your board. Read permissions are considered
Credits: Thanks to Brf for helping with read permissions.
Demo:
topicstats/
Attached file:
Topic Stats Page
Posted: 26 Sep 2011, 13:48
by Blackwolf
Awesome....thanks for going to all the effort!!
Topic Stats Page
Posted: 24 May 2013, 08:45
by Ashley_X
How would i go about adding a link to the topic stats in my footer
something like
Code: Select all
<li class="rightside"><!-- IF S_QUOTES_ENABLED and S_QUOTESPAGE_ENABLED --><a href="{U_QUOTES}">{L_QUOTESPAGE}</a> • <!-- ENDIF --><!-- IF U_TEAM --><a href="{U_TEAM}"
?
Topic Stats Page
Posted: 24 May 2013, 11:18
by Stoker
Code: Select all
<li class="rightside"><a href="{U_TOPICSTATSPAGE}">{L_TOPICSTATSPAGE}</a> • <!-- IF S_QUOTES_ENABLED and S_QUOTESPAGE_ENABLED --><a href="{U_QUOTES}">{L_QUOTESPAGE}</a> • <!-- ENDIF --><!-- IF U_TEAM --><a href="{U_TEAM}"
Try above
Topic Stats Page
Posted: 24 May 2013, 12:28
by Ashley_X
Hey Stoker, Thanks for replying in such little time , I just tried to add that code to my overall_footer.html and then i refreshed my theme and nothing showed up , below is my current overall_footer.html from my directory
Code: Select all
</div>
<div id="page-footer">
<div class="navbar">
<div class="inner"><span class="corners-top"><span></span></span>
<ul class="linklist">
<li class="icon-home"><a href="{U_INDEX}" accesskey="h">{L_INDEX}</a></li>
<!-- IF not S_IS_BOT -->
<!-- IF S_WATCH_FORUM_LINK --><li <!-- IF S_WATCHING_FORUM -->class="icon-unsubscribe"<!-- ELSE -->class="icon-subscribe"<!-- ENDIF -->><a href="{S_WATCH_FORUM_LINK}" title="{S_WATCH_FORUM_TITLE}">{S_WATCH_FORUM_TITLE}</a></li><!-- ENDIF -->
<!-- IF U_WATCH_TOPIC --><li <!-- IF S_WATCHING_TOPIC -->class="icon-unsubscribe"<!-- ELSE -->class="icon-subscribe"<!-- ENDIF -->><a href="{U_WATCH_TOPIC}" title="{L_WATCH_TOPIC}">{L_WATCH_TOPIC}</a></li><!-- ENDIF -->
<!-- IF U_BOOKMARK_TOPIC --><li class="icon-bookmark"><a href="{U_BOOKMARK_TOPIC}" title="{L_BOOKMARK_TOPIC}">{L_BOOKMARK_TOPIC}</a></li><!-- ENDIF -->
<!-- IF U_BUMP_TOPIC --><li class="icon-bump"><a href="{U_BUMP_TOPIC}" title="{L_BUMP_TOPIC}">{L_BUMP_TOPIC}</a></li><!-- ENDIF -->
<!-- ENDIF -->
<li class="rightside"><!-- IF S_QUOTES_ENABLED and S_QUOTESPAGE_ENABLED --><a href="{U_QUOTES}">{L_QUOTESPAGE}</a> • <!-- ENDIF --><!-- IF U_TEAM --><a href="{U_TEAM}">{L_THE_TEAM}</a> • <!-- ENDIF --><!-- IF not S_IS_BOT --><a href="{U_DELETE_COOKIES}">{L_DELETE_COOKIES}</a> • <!-- ENDIF -->{S_TIMEZONE}</li>
<li class="rightside"><a href="{U_TOPICSTATSPAGE}">{L_TOPICSTATSPAGE}</a> • <!-- IF S_QUOTES_ENABLED and S_QUOTESPAGE_ENABLED --><a href="{U_QUOTES}">{L_QUOTESPAGE}</a> • <!-- ENDIF --><!-- IF U_TEAM --><a href="{U_TEAM}"
</ul>
<span class="corners-bottom"><span></span></span></div>
</div>
<div class="copyright">{CREDIT_LINE}
<!-- IF TRANSLATION_INFO --><br />{TRANSLATION_INFO}<!-- ENDIF -->
<!-- IF DEBUG_OUTPUT --><br />{DEBUG_OUTPUT}<!-- ENDIF -->
<!-- IF U_ACP --><br /><strong><a href="{U_ACP}">{L_ACP}</a></strong><!-- ENDIF -->
</div>
</div>
</div>
<div>
<a id="bottom" name="bottom" accesskey="z"></a>
<!-- IF not S_IS_BOT -->{RUN_CRON_TASK}<!-- ENDIF -->
</div>
</body>
</html>
Topic Stats Page
Posted: 24 May 2013, 14:09
by Stoker
Okay, find and delete this part again:
Code: Select all
<li class="rightside"><a href="{U_TOPICSTATSPAGE}">{L_TOPICSTATSPAGE}</a> • <!-- IF S_QUOTES_ENABLED and S_QUOTESPAGE_ENABLED --><a href="{U_QUOTES}">{L_QUOTESPAGE}</a> • <!-- ENDIF --><!-- IF U_TEAM --><a href="{U_TEAM}"
(that was the code you added earlier)
Find:
Code: Select all
<!-- IF S_QUOTES_ENABLED and S_QUOTESPAGE_ENABLED -->
Before add:
Code: Select all
<a href="{U_TOPICSTATSPAGE}">{L_TOPICSTATSPAGE}</a> •
Topic Stats Page
Posted: 24 May 2013, 15:29
by Ashley_X
Works perfect - thank you - i suppose i would do the same for "Post Stats"