Hi
If a customer places an order and wants to Checkout with Paypal, then the price in the cart only includes the product prices and vat, but no shipping.
How can I change this?
I would need to display the shipping in Cart and checkout 0 as this is where the Paypal buttons are.
I am using shipping by weight
I have had a go myself. This is the code it was
I changed it to
But this is what I get in the shipping
£0.00 CAPTION £0.00
Any help very much appreciated
Thank you
If a customer places an order and wants to Checkout with Paypal, then the price in the cart only includes the product prices and vat, but no shipping.
How can I change this?
I would need to display the shipping in Cart and checkout 0 as this is where the Paypal buttons are.
I am using shipping by weight
I have had a go myself. This is the code it was
HTML Code:
<Actinic:REMOVE TAG="ShippingRow"> <tr class="checkoutMobileTR"> <td align="right" colspan="<Actinic:Variable Name="PriceColSpan"/>"><b><Actinic:Variable Name="ShippingCaption"/></b></td> <td align="right" class="cart"><Actinic:Variable Name="Shipping"/></td> <Actinic:REMOVE TAG="RemoveButtonSpan"> <td align="center" rowspan="<Actinic:Variable name='RemoveRowSpan' />"> </td> </Actinic:REMOVE> </tr> </Actinic:REMOVE>
HTML Code:
<tr class="checkoutMobileTR"> <td align="right" colspan="<Actinic:Variable Name="PriceColSpan"/>"><b><Actinic:Variable Name="ShippingCaption"/></b></td> <td align="right" class="cart"><Actinic:Variable Name="Shipping"/></td> <td align="center" rowspan="<Actinic:Variable name='RemoveRowSpan' />"> </td> </tr>
£0.00 CAPTION £0.00
Any help very much appreciated
Thank you
Comment