Page 1 of 1

Have Paypal figure shipping cost

Posted: Wed Mar 17, 2010 11:46 am
by pixology
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?

Re: Have Paypal figure shipping cost

Posted: Fri Mar 19, 2010 1:12 pm
by pixology
anyone? :-\

Re: Have Paypal figure shipping cost

Posted: Fri Mar 26, 2010 2:48 am
by Oneilus
You can edit Shipping.tpl file in Catalog/view/theme/YOURTHEME/template/checkout/

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>
first td is for sipping title and description, and the second td is for shipping value:

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>

Re: Have Paypal figure shipping cost

Posted: Tue Apr 06, 2010 9:10 pm
by dangerclose
That code didn't work for me, at the page it is still showing 'Free Shipping $0.00'

Re: Have Paypal figure shipping cost

Posted: Wed Apr 07, 2010 1:09 am
by webvet
Look in:

catalog/language/?english?/shipping/free.php

There you can alter both the title and description to whatever you want.

Re: Have Paypal figure shipping cost

Posted: Thu Apr 08, 2010 9:09 pm
by dangerclose
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...