Topic Stats Page
Forum rules
You dont have to use ModX or make your mod AutoMod compatible. A simple textfile is fine
But if you post Mods here You also have to give support
You dont have to use ModX or make your mod AutoMod compatible. A simple textfile is fine
But if you post Mods here You also have to give support
Topic Stats Page
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:
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:
You do not have the required permissions to view the files attached to this post.
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}"
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}"
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>
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> •