zxcvb:
thanks for the above - managed to change name of conditions of use but on my home page there is a link in right info box for 'GIFT CERTIFICATE FAQ'
i want to change this link to say FAQ's and cant find where to edit the text as it is not in the same place as everything else in the INFORMATION box.
Why would you want it to just display only FAQ if its the FAQs for the coupon then people need to know what this is for, if you just want to create a FAQ for the site then create a new page for this
other than that below may help a little
Below is the information that is displayed in that box on the right, and where it is found
/includes/modules/sideboxes/information.php
Scroll down
// 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>';
}
// only show Discount Coupon FAQ when installed
if (DEFINE_DISCOUNT_COUPON_STATUS <= 1 && MODULE_ORDER_TOTAL_COUPON_STATUS == 'true') {
$information[] = '<a href="' . zen_href_link(FILENAME_DISCOUNT_COUPON) . '">' . BOX_INFORMATION_DISCOUNT_COUPONS . '</a>';
you can see the description variable . BOX_INFORMATION_GV . which you can locate your english.php language file
/includes/languages/yourtemplate/english.php
this gives the gift voucher its name
// Define the name of your Gift Certificate as Gift Voucher, Gift Certificate, Zen Cart Dollars, etc. here for use through out the shop
define('TEXT_GV_NAME','Gift Certificate');
define('TEXT_GV_NAMES','Gift Certificates');
further down you will see
define('BOX_INFORMATION_DISCOUNT_COUPONS', 'Discount Coupons');
define('BOX_INFORMATION_GV', TEXT_GV_NAME . ' FAQ');
if you was to alter it it would be the above line removing the TEXT_GV_NAME (which is the name of the discount coupon)
define('BOX_INFORMATION_GV',' FAQ');
This could have implacations elsewhere as without checking i don't know where else it might display this new description BOX_INFORMATION_GV
personally i wouldn't change it
Rob