View Single Post
  #69  
Old 09-17-2004, 01:10 PM
  Jon's Avatar 
Jon Jon is offline
 

X-Guru
  
Join Date: Oct 2002
Location: Vancouver, Canada
Posts: 4,200
 

Default

I was asked a question about moving the discounts/gift certificates up to above the cart, so I want to post the answer here in case anybody else wants to do it.

I believe it's the same for both versions.

To move the discounts section up above the shopping cart, open skin1/customer/cart.tpl

FIND:
Code:
{if $cart.coupon_discount eq 0 and $products ne ""} {if $active_modules.Discount_Coupons ne ""} {include file="modules/Discount_Coupons/add_coupon.tpl} {/if} {/if}

CUT THAT CODE AND PASTE IT NEAR THE TOP OF THE FILE, AFTER:

Code:
{if $active_modules.Gift_Certificates ne ""} {$lng.txt_cart_note} {/if}

If you want to move up gift certificates as well, do the same with the code:

Code:
{if $active_modules.Gift_Certificates ne ""} {include file="modules/Gift_Certificates/gc_cart.tpl" giftcerts_data=$cart.giftcerts} {/if}
Reply With Quote