Recent Acitivity and Current Activity Question

Michael

Active member
I have noticed that the only way that you can hide what page you are viewing is by appearing offline completely, I do not want to hide my online status and would like to know if there is any way that you can hide what you are viewing but still remain online?

Thanks.
 
You will need to wrap a conditional around this in member_card and member_view templates:

Code:
                        <xen:if is="{$user.activity.description}">
                            {$user.activity.description}<xen:if is="{$user.activity.itemTitle}"> <em><a href="{$user.activity.itemUrl}" class="concealed">{$user.activity.itemTitle}</a></em></xen:if>,
                        <xen:else />
                            {xen:phrase viewing_unknown_page},
                        </xen:if>
 
Are there any other spots other than those two around the forum that display this info too? I am considering using an admin only conditional.

Thanks :)
 
Are there any other spots other than those two around the forum that display this info too? I am considering using an admin only conditional.

Thanks :)

I did a template search and those were the only two that came up with the activity.description.

You can wrap them with:

<xen: if is="{$visitor.is_admin}">

</xen:if>
 
Top Bottom