I have it set up now to zip straight to confirmation because I have one payment method(paypal) and one shipping method(flat rate: $0.00). The last remaining issue is that it shows 0.00 on the confirmation page before it sends them to paypal where the shipping is figured. Is there a way to either remove the shipping line item completely, or replace it with "To be figured by paypal" or something to that effect?
You can edit Shipping.tpl file in Catalog/view/theme/YOURTHEME/template/checkout/
around line 45 :
first td is for sipping title and description, and the second td is for shipping value:
so you do that:
around line 45 :
Code: Select all
<td width="534"><label for="<?php echo $quote['id']; ?>" style="cursor: pointer;"><?php echo $quote['title']; ?></label></td>
<td width="1" align="right"><label for="<?php echo $quote['id']; ?>" style="cursor: pointer;"><?php echo $quote['text']; ?></label></td>
so you do that:
Code: Select all
<td width="534"><label for="<?php echo $quote['id']; ?>" style="cursor: pointer;">To be figured by paypal</label></td>
<td width="1" align="right"><label for="<?php echo $quote['id']; ?>" style="cursor: pointer;"></label></td>
Look in:
catalog/language/?english?/shipping/free.php
There you can alter both the title and description to whatever you want.
catalog/language/?english?/shipping/free.php
There you can alter both the title and description to whatever you want.
Genuine, Honest Opencart Support @ http://webvetservices.com
thanks, that worked... now on the Paypal receipt, it only shows the Store name - I think someone was writing a response to that but don't see a fix...
Who is online
Users browsing this forum: No registered users and 18 guests