RM 2.2 More resources from admin (how I will hide this)

In the xfrm_resource_view template find (around line 291):
HTML:
                    <xf:if is="$authorOthers is not empty">
                        <div class="resourceSidebarGroup">
                            <h4 class="resourceSidebarGroup-title">
                                <a href="{{ link('resources/authors', $resource.User) }}">{{ phrase('xfrm_more_resources_from_x', {'name': $resource.User.username}) }}</a>
                            </h4>
                            <ul class="resourceSidebarList">
                            <xf:foreach loop="$authorOthers" value="$authorOther">
                                <li>
                                    <xf:macro template="xfrm_resource_list_macros" name="resource_simple"
                                        arg-resource="{$authorOther}"
                                        arg-withMeta="{{ false }}" />
                                </li>
                            </xf:foreach>
                            </ul>
                        </div>
                    </xf:if>

Replace by
HTML:
<!--
                    <xf:if is="$authorOthers is not empty">
                        <div class="resourceSidebarGroup">
                            <h4 class="resourceSidebarGroup-title">
                                <a href="{{ link('resources/authors', $resource.User) }}">{{ phrase('xfrm_more_resources_from_x', {'name': $resource.User.username}) }}</a>
                            </h4>
                            <ul class="resourceSidebarList">
                            <xf:foreach loop="$authorOthers" value="$authorOther">
                                <li>
                                    <xf:macro template="xfrm_resource_list_macros" name="resource_simple"
                                        arg-resource="{$authorOther}"
                                        arg-withMeta="{{ false }}" />
                                </li>
                            </xf:foreach>
                            </ul>
                        </div>
                    </xf:if>
-->
 
@kushal forget my previous message and just go to the XFRM settings:

selection_818-png.282094


(Thanks to my mentor !)
 
Top Bottom