when i try to set the start page to news, guestbook etc that modules can't be seen.. i dont know why
heres my site http://hackside.com/portal
LazyBadger wrote:
With caution you can use smth. like this codeglobal $xoopsUser;
if (is_object($xoopsUser)) {
$avatar = $xoopsUser->getVar('user_avatar');
if (file_exists(XOOPS_ROOT_PATH.'/uploads/'.$avatar)) {
$avatar = '.XOOPS_URL.'/uploads/'.$avatar'" alt="avatar" />';
} else {
$avatar = '';
But using php inside theme is bad style and violate principle of separation logic from code. If you include_php and will use additional smarty-var in your theme it can be considered as "right way" (from some POVs)