Adding a third group and get it to work

The code for my site’s top menu is below. I need to add a third group with ID=Employer1. I’ve tried using an elseif statement but on the homepage, the portions of the menu that pertain to the Employer group and the Employer1 group show up twice. Essentially, the same menu should be visible for both employer groups but obviously not twice. I’ve tried everything and cannot figure it out. Is there another type of statement I should be using instead? Any help would be most appreciated!

[php][[Home]]   
[[My Account]]   
{if $GLOBALS.current_user.group.id != “Employer”}
[[Find Jobs]]   
[[Post Resumes]]   
{/if}
{if $GLOBALS.current_user.group.id != “JobSeeker”}
[[Search Resumes]]   

 [[Post Jobs]]   
{/if}
[[Contact]]  
[/php]

why dont you use “==”
ex:
[php]{if $GLOBALS.current_user.group.id == “Employer”}

Show Employer This Content

{/if}[/php]

please note that PHP is CaseSensitive

JobSeeker is not the same with jobseeker

Do you use Smarty Templates?

Sponsor our Newsletter | Privacy Policy | Terms of Service