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}