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
- Stoker
- Site Admin
- Posts: 3536
- Joined: 12 May 2008, 23:26
- BBCodes: 239
- Favourite BBCode: Anipro
- Favourite MOD: PrettyPhoto
- Location: Denmark
- Contact:
Topic Stats Page
Board rules! No PM support
- Blackwolf
- BBCoder IV
- Posts: 272
- Joined: 04 Dec 2010, 12:36
- BBCodes: 101
- Favourite BBCode: Dropcap
- Favourite MOD: mchat
- Location: Melbourne Australia
Topic Stats Page
Awesome....thanks for going to all the effort!!
Ultimate Edition, Ultimate Edition Oz, Oz Unity
“We are Anonymous. We are Legion. We do not forgive. We do not forget. Expect us.”
“We are Anonymous. We are Legion. We do not forgive. We do not forget. Expect us.”
Topic Stats Page
How would i go about adding a link to the topic stats in my footer
something like
?
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}"
- Stoker
- Site Admin
- Posts: 3536
- Joined: 12 May 2008, 23:26
- BBCodes: 239
- Favourite BBCode: Anipro
- Favourite MOD: PrettyPhoto
- Location: Denmark
- Contact:
Topic Stats Page
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}"
Board rules! No PM support
Topic Stats Page
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>
- Stoker
- Site Admin
- Posts: 3536
- Joined: 12 May 2008, 23:26
- BBCodes: 239
- Favourite BBCode: Anipro
- Favourite MOD: PrettyPhoto
- Location: Denmark
- Contact:
Topic Stats Page
Okay, find and delete this part again: (that was the code you added earlier)
Find:
Before add:
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}"
Find:
Code: Select all
<!-- IF S_QUOTES_ENABLED and S_QUOTESPAGE_ENABLED -->
Code: Select all
<a href="{U_TOPICSTATSPAGE}">{L_TOPICSTATSPAGE}</a> •
Board rules! No PM support
Topic Stats Page
Works perfect - thank you - i suppose i would do the same for "Post Stats"