paul scott1234 Posted December 6, 2010 Share Posted December 6, 2010 Hi All, im looking for a mod that when a customer logs on the my account details will show the group they belong to. Link to comment Share on other sites More sharing options...
rocky Posted December 6, 2010 Share Posted December 6, 2010 Put the following code in my-account.php: $group = new Group(intval($cookie->id_group), intval($cookie->id_lang)); if (Validate::isLoadedObject($group)) $smarty->assign('group_name', $group->name); Then you can use the following in my-account.tpl to display the customer's group name: {$group_name} Link to comment Share on other sites More sharing options...
Recommended Posts