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