Now I have another question.
What if I don't want to uninstall the Gift Certificate Module but I just don't want the Link in the information box?
My guess is that I'll have to modify the code in the sidebox.
In modules/sideboxes/information.php:
Code:
// only show GV FAQ when installed
if (MODULE_ORDER_TOTAL_GV_STATUS == 'true') {
$information[] = '<a href="' . zen_href_link(FILENAME_GV_FAQ) . '">' . BOX_INFORMATION_GV . '</a>';
}
So if GV FAQ is installed but I don't want the link thenI have to comment that code out.
Code:
// only show GV FAQ when installed
// if (MODULE_ORDER_TOTAL_GV_STATUS == 'true') {
// $information[] = '<a href="' . zen_href_link(FILENAME_GV_FAQ) . '">' . BOX_INFORMATION_GV . '</a>';
// }