RM 1.2 How to remove "Most Active Authors"

max_d

Member
How do I remove 'Most Active Authors'? I know you have to edit the resource_index template, but I'm not sure what code to change?

Code:
<xen:if is="{$activeAuthors}">
        <div class="secondaryContent avatarList">
            <h3><a href="{xen:link resources/authors}" class="concealed">{xen:phrase most_active_authors}</a></h3>
            <ol>
            <xen:foreach loop="$activeAuthors" value="$author">
                <li>
                    <xen:avatar user="$author" size="s" img="true" href="{xen:link resources/authors, $author}" class="NoOverlay" />
                    <xen:username user="$author" rich="true" href="{xen:link resources/authors, $author}" class="NoOverlay" />
                    <div class="extraData"><a href="{xen:link resources/authors, $author}">{xen:phrase resources}: {xen:number $author.resource_count}</a></div>
                </li>
            </xen:foreach>
            </ol>
        </div>
    </xen:if>
 
Top Bottom