Zen Cart Logo
Forums / Basic Configuration / Gift Certificate FAQ in sidebox

Gift Certificate FAQ in sidebox

Views: 1,360

Results 1 to 4 of 4
6 May 2012, 9:53 PM
#1
mike_b1 avatar

mike_b1

New Zenner

Join Date:
Jan 2012
Location:
Las Vegas
Posts:
31
Plugin Contributions:
0

Gift Certificate FAQ in sidebox

How can I remove the "Gift Certificate FAQ" located in the Information Sidebox? I've looked all through the admin and have not been able to remove it.

Thanks in advance.

6 May 2012, 10:11 PM
#2
ajeh avatar

ajeh

Oba-san

Join Date:
Sep 2003
Location:
Ohio
Posts:
62,757
Plugin Contributions:
1

Re: Gift Certificate FAQ in sidebox

Using your templates and overrides, you would need to customize the file:
/includes/modules/sideboxes/your_template_dir/information.php

and comment out the 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>';
  }
6 May 2012, 11:21 PM
#3
mike_b1 avatar

mike_b1

New Zenner

Join Date:
Jan 2012
Location:
Las Vegas
Posts:
31
Plugin Contributions:
0

Re: Gift Certificate FAQ in sidebox

Thank you very much.

One minor error in the answer. Instead of placing a copy of information.php into the /includes/modules/sideboxes/your_template_dir/sideboxes/ directory, (which didn't work)
I placed a copy into the /includes/modules/sideboxes/your_template_dir/ directory (which did work).

Your still the Zen Master :smile:

Again, Thanks.

7 May 2012, 12:14 AM
#4
ajeh avatar

ajeh

Oba-san

Join Date:
Sep 2003
Location:
Ohio
Posts:
62,757
Plugin Contributions:
1

Re: Gift Certificate FAQ in sidebox

Thanks for the update that this worked ... without the typo on the path ... :cool: