i have it set so that if a user is not logged in, the categories do not list (did this manually as it works better for me cuz i want everything else accessable minus the store itself)... and i have it set so users need to be authorized before they are granted access.. but right now if a user registers and they are not yet green lighted they still have access to view the store section, i do not want them to be able to see the store section until they are authorized, and i do not want to use the setting in the customer section because this blocks every category minus the contacts.
right now im doing
<?php if ($_SESSION['customer_id']) { ?>
then itll show the categories.. i need to know the variable for the customer authorization status.. so i can do an && and then have it check that the user is authorized.. what is this variable and what would the value be for an authorized user versus a pending authorization user?



