Forum Statistics - PixelExit.com

Forum Statistics - PixelExit.com 1.0.0

No permission to download
Is your forum_list template customized? Can you check under Template Modifications and see if any show not applied for forum stats, namely one of the forum_list ones.

upload_2016-6-25_15-17-41.webp
 
Could you post the forum_list template please?

Code:
<xen:h1>{$xenOptions.boardTitle}</xen:h1>

<xen:container var="$head.canonical"><link rel="canonical" href="{xen:link 'canonical:forums'}" /></xen:container>
<xen:if is="{$xenOptions.boardDescription}"><xen:container var="$head.description">
    <meta name="description" content="{$xenOptions.boardDescription}" /></xen:container></xen:if>
<xen:container var="$head.openGraph">
    <xen:include template="open_graph_meta">
        <xen:set var="$url">{xen:link 'canonical:forums'}</xen:set>
        <xen:set var="$title">{$xenOptions.boardTitle}</xen:set>
        <xen:set var="$description">{$xenOptions.boardDescription}</xen:set>
        <xen:set var="$ogType">website</xen:set>
    </xen:include></xen:container>

<xen:hook name="forum_list_nodes">
    <xen:hook name="dark_taigachat_alt" />
    <xen:if is="{$renderedNodes}"><xen:include template="node_list" /></xen:if>
</xen:hook>
   
<xen:sidebar>
    <xen:edithint template="sidebar.css" />
   
    <xen:hook name="forum_list_sidebar">
        <xen:if is="{$canViewMemberList}">
            <xen:include template="sidebar_online_users" />
        </xen:if>
       
        <xen:if is="{$threads}">
            <div class="section threadList">
                <div class="secondaryContent">
                    <h3><a href="{xen:link find-new/posts}">{xen:phrase new_posts}</a></h3>
                    <xen:include template="sidebar_new_posts" />
                </div>
            </div>
        </xen:if>
       
        <xen:if is="{$profilePosts}">
            <div class="section profilePostList">
                <div class="secondaryContent">
                    <h3><a href="{xen:link find-new/profile-posts}">{xen:phrase new_profile_posts}</a></h3>
                    <xen:include template="sidebar_profile_post_list" />
                </div>
            </div>
        </xen:if>
       
        <!-- block: forum_stats -->
        <div class="section">
            <div class="secondaryContent statsList" id="boardStats">
                <h3>{xen:phrase forum_statistics}</h3>
                <div class="pairsJustified">
                    <dl class="discussionCount"><dt>{xen:phrase discussions}:</dt>
                        <dd>{xen:number $boardTotals.discussions}</dd></dl>
                    <dl class="messageCount"><dt>{xen:phrase messages}:</dt>
                        <dd>{xen:number $boardTotals.messages}</dd></dl>
                    <dl class="memberCount"><dt>{xen:phrase members_count}:</dt>
                        <dd>{xen:number $boardTotals.users}</dd></dl>
                    <dl><dt>{xen:phrase latest_member}:</dt>
                        <dd><xen:username user="$boardTotals.latestUser" /></dd></dl>
                    <!-- slot: forum_stats_extra -->
                </div>
            </div>
        </div>
        <!-- end block: forum_stats -->
       
        <xen:include template="sidebar_share_page">
            <xen:set var="$url">{xen:link canonical:forums}</xen:set>
        </xen:include>
       
    </xen:hook>
</xen:sidebar>
 
Where you added the chat hook is causing the template modification to fail for the stats. That really should be added as template mod itself by the chat add-on.
 
Where you added the chat hook is causing the template modification to fail for the stats. That really should be added as template mod itself by the chat add-on.

So you're saying I need to install the taiga chat addon as a widget framework plugin?
 
If you could yes, or you can create a template modification yourself.

I've done so with the 'add a widget' function, but there's still no change. I was thinking there's maybe a missing HTML code to show it on my platform forum_list?

Code:
<div class="nodeList sectionMain" id="peStatsContainer">
<div class="peStatsBody">
<div class="categoryStrip">
<div class="categoryText">
<h3 class="nodeTitle">Forum Statistics</h3>
</div>
</div>
.....

Is shown, as expected, on the default style source code. I don't see even
Code:
<div class="nodeList sectionMain" id="peStatsContainer">
on the platform style source code.
 
How can I do that?

I believe he's referring too:

Code:
<xen:hook name="forum_list_nodes">
    <xen:hook name="dark_taigachat_alt" />
    <xen:if is="{$renderedNodes}"><xen:include template="node_list" /></xen:if>
</xen:hook>

Remove that portion so it'll be like:
Code:
<xen:hook name="forum_list_nodes">
    <xen:if is="{$renderedNodes}"><xen:include template="node_list" /></xen:if>
</xen:hook>
 
I believe he's referring too:

Code:
<xen:hook name="forum_list_nodes">
    <xen:hook name="dark_taigachat_alt" />
    <xen:if is="{$renderedNodes}"><xen:include template="node_list" /></xen:if>
</xen:hook>

Remove that portion so it'll be like:
Code:
<xen:hook name="forum_list_nodes">
    <xen:if is="{$renderedNodes}"><xen:include template="node_list" /></xen:if>
</xen:hook>

Thanks, the forum statistics are appearing now. The shoutbox is gone though it doesn't seem to work with these settings:

BbR8YxT.png


Any help is appreciated.
 
Top Bottom