Jump to content

Is there an { if } condition for registered users/guests?


Recommended Posts

Sorry I don't know in smarty directly: I use this code (peraps not the better way):

       /* get current id_customer in php file */
       $cookie = new Cookie('ps');
       $id_customer=intval($cookie->id_customer);
       $logged=($id_customer==0 ? false : true );
       $smarty->assign('logged', $logged);



in tpl file I use {if $logged } ...

Link to comment
Share on other sites

×
×
  • Create New...