1
I want to each user group has his own environment normal code was :
<{if $xoops_isadmin}><{includeq file="$theme_name/xotpl/xo_footerstatic.html"}><{/if}>
This works well , only admin can see the footer , than i tried :
<{if $xoops_isadmin}><{includeq file="$theme_name/xotpl/xo_footerstatic.html"}><{/if}>
<{if $xoops_isuser}><{includeq file="$theme_name/xotpl/xo_user.html"}><{/if}>
So that the user and the admin has his own footer, this works partly, now i only see the user side , even when im admin, how can i fix this ?