[XTR] Forum statistics

[XTR] Forum statistics 1.0.1

No permission to download

Osman

Well-known member
Osman submitted a new resource:

[XTR] Forum statistics - This add-on allows you to show the forum statistics with columns.

This add-on allows you to highlight your forum statistics on your website in columns of different color tones. As you know, we have previously presented a similar structure in the Ryzer Pro design regarding forum statistics. Now, we present a similar structure to you, our valued members, in a structure that can be added as a widget according to the request in this subject...

Read more about this resource...
 
Hi,

Any chance I can register on your resource? Cause multiple times I tried it gives me "Your registration has been rejected as it resembles spam-like or automated behavior. Please contact the administrator for further information or assistance." what ever I do.

And none of your supports replying on emails by the way.
 
Weird. Cause it doesn't show the icons with my site
Probably because the Font Awesome syntax changes in XF 2.3
 
I felt this emotion and I understood that the icons are visible based on the theme, some themes that I installed are visible in others not but I don't know what it depends on
 
xtr-style-properties-webp.278115
 
Code:
Forum statistics threads icon
<i class="fa--xf far fa-comments"><svg xmlns="http://www.w3.org/2000/svg" role="img" ><use href="/data/local/icons/regular.svg?#comments"></use></svg></i>
Forum statistics messages icon
<i class="fa--xf far fa-comment-dots"><svg xmlns="http://www.w3.org/2000/svg" role="img" ><use href="/data/local/icons/regular.svg?#comment-dots"></use></svg></i>
Forum statistics members icon
<i class="fa--xf far fa-users"><svg xmlns="http://www.w3.org/2000/svg" role="img" ><use href="/data/local/icons/regular.svg?#users"></use></svg></i>
Forum statistics latest member icon
<i class="fa--xf far fa-user-plus"><svg xmlns="http://www.w3.org/2000/svg" role="img" ><use href="/data/local/icons/regular.svg?#user-plus"></use></svg></i>

I had to change a few to get them to work changed the following template to from this...
Code:
<xf:css src="xentr__forum_statistics.less" />

<div class="block"{{ widget_data($widget) }}>  
    <div class="block-container">
        <xf:if is="property('xentr_forum_statistics_title')">
            <h3 class="block-minorHeader">{$title}</h3>
        </xf:if>  
        <div class="block-body block-row">
            <div class="xentr-forum-statistics">
               
                <div class="contentRow count--threads">
                    <div class="contentRow-figure">
                        <i class="{{ property('xentr_forumStatisticsThreadsIcon') }}"></i>  
                    </div>
                    <div class="contentRow-main">
                        <span class="statistics-count">{$forumStatistics.threads|number}</span>
                        <span class="statistics-title">{{ phrase('threads') }}</span>
                    </div>  
                </div>  

                <div class="contentRow count--messages">
                    <div class="contentRow-figure">
                        <i class="{{ property('xentr_forumStatisticsMessagesIcon') }}"></i>
                    </div>
                    <div class="contentRow-main">
                        <span class="statistics-count">{$forumStatistics.messages|number}</span>
                        <span class="statistics-title">{{ phrase('messages') }}</span>
                    </div>  
                </div>

                <div class="contentRow count--users">
                    <div class="contentRow-figure">
                        <i class="{{ property('xentr_forumStatisticsMembersIcon') }}"></i>
                    </div>
                    <div class="contentRow-main">
                        <span class="statistics-count">{$forumStatistics.users|number}</span>
                        <span class="statistics-title">{{ phrase('members') }}</span>
                    </div>  
                </div>

                <div class="contentRow latest-member">
                    <div class="contentRow-figure">
                        <i class="{{ property('xentr_forumStatisticsLatestMemberIcon') }}"></i>  
                    </div>
                    <div class="contentRow-main">
                        <span class="contentRow-title"><xf:username user="{$forumStatistics.latestUser}" /></span>
                        <span class="statistics-title">{{ phrase('latest_member') }}</span>
                    </div>  
                </div>
               
            </div>  
        </div>
    </div>
</div>

To this


Code:
<xf:css src="xentr__forum_statistics.less" />

<div class="block"{{ widget_data($widget) }}>  
    <div class="block-container">
        <xf:if is="property('xentr_forum_statistics_title')">
            <h3 class="block-minorHeader">{$title}</h3>
        </xf:if>  
        <div class="block-body block-row">
            <div class="xentr-forum-statistics">
               
                <div class="contentRow count--threads">
                    <div class="contentRow-figure">
                    {{ property('xentr_forumStatisticsThreadsIcon') }}
                    </div>
                    <div class="contentRow-main">
                        <span class="statistics-count">{$forumStatistics.threads|number}</span>
                        <span class="statistics-title">{{ phrase('threads') }}</span>
                    </div>  
                </div>  

                <div class="contentRow count--messages">
                    <div class="contentRow-figure">
                    {{ property('xentr_forumStatisticsMessagesIcon') }}
                    </div>
                    <div class="contentRow-main">
                        <span class="statistics-count">{$forumStatistics.messages|number}</span>
                        <span class="statistics-title">{{ phrase('messages') }}</span>
                    </div>  
                </div>

                <div class="contentRow count--users">
                    <div class="contentRow-figure">
                    {{ property('xentr_forumStatisticsMembersIcon') }}
                    </div>
                    <div class="contentRow-main">
                        <span class="statistics-count">{$forumStatistics.users|number}</span>
                        <span class="statistics-title">{{ phrase('members') }}</span>
                    </div>  
                </div>

                <div class="contentRow latest-member">
                    <div class="contentRow-figure">
                        {{ property('xentr_forumStatisticsLatestMemberIcon') }}
                    </div>
                    <div class="contentRow-main">
                        <span class="contentRow-title"><xf:username user="{$forumStatistics.latestUser}" /></span>
                        <span class="statistics-title">{{ phrase('latest_member') }}</span>
                    </div>  
                </div>
               
            </div>  
        </div>
    </div>
</div>
 

Attachments

  • Screenshot_28.webp
    Screenshot_28.webp
    22.4 KB · Views: 3
  • Screenshot_29.webp
    Screenshot_29.webp
    42.4 KB · Views: 3
Back
Top Bottom