AbanteCart Community

Shopping Cart Operations => Support => General Support => Topic started by: montgo on October 29, 2013, 05:34:03 AM

Title: Payment Confirmation page .tpl file
Post by: montgo on October 29, 2013, 05:34:03 AM
Coupons are not required and are deselected from the cart page but the option still appears on the payment confirmation page when logged in. I want to remove that option but the .tpl file I thought would deal with it - default_html5/template/pages/checkout/payment.tpl - does not work.

Could you please advise the location of the correct .tpl file. Many thanks.
Title: Re: Payment Confirmation page .tpl file
Post by: abantecart on October 29, 2013, 10:45:49 PM
File you listed is correct /storefront/view/default_html5/template/pages/checkout/payment.tpl

You need to remove:

Code: [Select]
if ($coupon_status) {
echo $coupon_form;
}
Title: Re: Payment Confirmation page .tpl file
Post by: montgo on October 30, 2013, 05:39:54 AM
Thank you . . .