I am using latest version of OpenCart "2.3.0.2" and i would like to display a specific div at the home page only for non-logged users. The file i am trying to edit is:catalog/view/theme/default/template/common/home.tpl
The code i already tried is:
<?php if (!$logged) { ?>
//My code here
<?php } ?>
However this code doesnt work as i am getting this error message:
Notice: Undefined variable: logged in \catalog\view\theme\default\template\common\home.tpl on line 3
The weird is that when i use the code above on other files e.g. header.tpl everything works fine. Can anyone point me to the right direction as i am new on MVC structures ?