View Single Post
  #9  
Old 02-20-2009, 01:03 AM
 
shimmy shimmy is offline
 

Advanced Member
  
Join Date: Jun 2008
Posts: 41
 

Default Re: make ~ free shipping and tax exempt "yes" by default?

Quote:
Originally Posted by Holub

Also with shipping, find line (about 30:

Code:
<option value='Y'{if $product.free_tax eq 'Y'} selected="selected"{/if}>{$lng.lbl_yes}</option>

and change it to

Code:
<option value='Y'{if $product.free_shipping eq 'Y'} selected="selected"{/if}>{$lng.lbl_yes}</option>

and replace it to

Code:
<option value='Y'{if $product.free_shipping eq 'Y' || $product.productid eq ""} selected="selected"{/if}>{$lng.lbl_yes}</option>

This allow to assign free shipping by default.

Hi holub, thanks I would also like to apply this modification but I'm a bit new to this and a little confused. For the shipping you said to find line X change it to y and replace it to Z. Can you clarify for me what you mean by change it and then replace it?
Thanks in advance
__________________
Shimmy

www.hatsandheadscarves.com
Feedback welcome
shimmy@hatsandheadscarves.com
x-cart version 4.3
one page checkout & buy together mods

Reply With Quote