How to add a number of topics on the main page

Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Sonia

Administrator
Administrator
Joined
Jan 27, 2019
Messages
1,534
Credits
1,338
Screenshot_1.thumb.png.f64430181b9d48de101544d37477aadd.png

Go to forumRow find:
Code:
Expand Collapse Copy
dl>
    {{$count = \IPS\forums\Topic::contentCount( $forum, TRUE );}}
    <dt class="ipsDataItem_stats_number">{number="$count"}</dt>
    <dd class="ipsDataItem_stats_type ipsType_light">{lang="posts_no_number" pluralize="$count"}</dd>                   
</dl>
Replaced by:
Code:
Expand Collapse Copy
<dl>
    {{$count = \IPS\forums\Topic::contentCount( $forum, TRUE );}}
    <dt class="ipsDataItem_stats_number">{number="$count"}</dt>
    <dd class="ipsDataItem_stats_type ipsType_light">{lang="posts_no_number" pluralize="$count"}</dd>
    <dt class="ipsDataItem_stats_number">{number="$forum->topics"}</dt>
    <dd class="ipsDataItem_stats_type ipsType_light">{lang="{!# [1:temat][2:tematy][3:tematy][4:tematy][?:tematów]}" pluralize="$forum->topics"}</dd>
</dl>
 
Back
Top