Hello Anne,

To disable the "Gift certificate FAQ" and "Discount coupons" options in the footer menu, I modified the file footer_menu_defines.php in the "extra_definitions" map according to the code in the file information.php file in the sideboxes map:

// only show GV FAQ when installed

if (MODULE_ORDER_TOTAL_GV_STATUS == 'true') {
Define('GVFAQ', '<li><a href="' . zen_href_link(FILENAME_GV_FAQ) . '">' . BOX_INFORMATION_GV . '</a></li>');
} else {
Define('GVFAQ', '');
}

// only show Discount Coupon FAQ when installed

if (DEFINE_DISCOUNT_COUPON_STATUS <= 1 && MODULE_ORDER_TOTAL_COUPON_STATUS == 'true') {
Define('COUPON', '<li><a href="' . zen_href_link(FILENAME_DISCOUNT_COUPON) . '">' . BOX_INFORMATION_DISCOUNT_COUPONS . '</a></li>');
} else {
Define('COUPON','');
}