ok i got it
in store/includes/functions/extra_functions/group_check.php which was created for me by swguy i added this piece of code which i'm sure could be cleaned up but it works
Code:
// for members: Deny not logged in.
function verify_customer_group_members() {
global $db;
if ( !isset($_SESSION['customer_id']) || ($_SESSION['customer_id'] == '')) {
return false;
}
return true; // include all others
}
then in store/includes/templates/zzz/sideboxes/tpl_categories.php i added the folowing just above $content .= '</div>';
Code:
if (verify_customer_group_members()) {
$content .= '<a class="category-internal" href="http://www.gorillagear.ca/index.php?main_page=index&cPath=38">Clearance Bin</a>' . "\n";
}
works fine now