XF 2.1 Hiding notices on register page

Drayton Talk

New member
Since you can't hide notices on specific pages with the admin panel, I decided to just hard-code any notices to not show on the register_form template within the PAGE_CONTAINER template.

However, I can't manage to get this to work. This is what I have done in the PAGE_CONTAINER template:

Code:
<xf:if is="$template != 'register_form'">
    <xf:if is="$notices.block">
        <xf:macro template="notice_macros" name="notice_list" arg-type="block" arg-notices="{$notices.block}" />
    </xf:if>

    <xf:if is="$notices.scrolling">
        <xf:macro template="notice_macros" name="notice_list" arg-type="scrolling" arg-notices="{$notices.scrolling}" />
    </xf:if>
</xf:if>

Any help on this? It's really frustrating me...
 
Top Bottom