XF 1.0 setting for messageShowRegisterDate ??

steven s

Well-known member
I do not want to show the member since date.
In the member_card template, I commented out
Code:
<dt>{xen:phrase member_since}:</dt> <dd>{xen:date $user.register_date}</dd>
but noticed in message_user_info that there is
Code:
                <xen:if is="@messageShowRegisterDate">
                    <dl class="pairsInline">
                        <dt>{xen:phrase member_since}:</dt>
                        <dd>{xen:date $user.register_date}</dd>
                    </dl>
                </xen:if>
which leads me to think that there is an option somewhere to not view the registration date.
 
Correct. That setting is only for posts. There is no such setting for other instances of the registration date.
Then I'll stop looking. :)
So below
Code:
<xen:if is="@messageShowRegisterDate">
                    <dl class="pairsInline">
                        <dt>{xen:phrase member_since}:</dt>
                        <dd>{xen:date $user.register_date}</dd>
                    </dl>
                </xen:if>
is for the block to the left?
Then I won't bother commenting it out.
Thanks.
 
Top Bottom