• REGISTRATION REQUIREMENTS:

    Your username here MUST MATCH your XenForo username (connected to your XF license).

    Once you have registered here, then you need to start a conversation at xenforo.com w/Bob and provide the following:
    1. Your XenForo License Validation Token
    2. The Domain Name associated with the License
    NOTE: Your account will be validated once ALL requirements are verified/met. Thank you for your patience.

How to delete Quick Stats?

rafass

New Member
I want to remove this General Quick Stats on the main page:
R 2015-04-25 at 00.51.18.jpg
what's the name of the template I have to edit?
I can see it. Thanks for your help!
 
All showcase templates are prefixed: nflj_showcase (so they are all grouped together.

nflj_showcase_index_sidebar

Remove or comment out this entire block of template code.
HTML:
    <div class="section">
        <div class="secondaryContent">
            <h3>{xen:phrase nflj_showcase_quick_stats}</h3>
            <div class="pairsJustified showcaseQuickStats">
                <dl>
                    <dt>{xen:phrase nflj_showcase_categories}:</dt>
                    <dd>{xen:if '{$quikStats.categories}', '{xen:number $quikStats.categories}', '0'}</dd>
                </dl>
                <dl>
                    <dt>{xen:phrase nflj_showcase_items}:</dt>
                    <dd>{xen:if '{$quikStats.items}', '{xen:number $quikStats.items}', '0'}</dd>
                </dl>
                <dl>
                    <dt>{xen:phrase nflj_showcase_views}:</dt>
                    <dd>{xen:if '{$quikStats.views}', '{xen:number $quikStats.views}', '0'}</dd>
                </dl>
                <dl>
                    <dt>{xen:phrase nflj_showcase_images}:</dt>
                    <dd>{xen:if '{$quikStats.images}', '{xen:number $quikStats.images}', '0'}</dd>
                </dl>
                <xen:if is="{$quikStats.reviews}">
                    <dl>
                        <dt>{xen:phrase nflj_showcase_reviews}:</dt>
                        <dd>{xen:if '{$quikStats.reviews}', '{xen:number $quikStats.reviews}', '0'}</dd>
                    </dl>
                </xen:if>
                <xen:if is="{$quikStats.comments}">               
                    <dl>
                        <dt>{xen:phrase nflj_showcase_comments}:</dt>
                        <dd>{xen:if '{$quikStats.comments}', '{xen:number $quikStats.comments}', '0'}</dd>
                    </dl>
                </xen:if>
                <dl>
                    <dt></dt>
                    <dd><a href="{xen:link showcase/index.rss}" class="showcaseFeedIcon" title="{xen:phrase nflj_showcase_rss_feed_for_showcase}">{xen:phrase rss}</a></dd>
                </dl>               
            </div>           
        </div>
    </div>
 
Back
Top