Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

No Shipping Charges On Pay Pal.


yanngoyan

Recommended Posts

Posted

No Shipping Charges On Pay Pal.

 

I testing oscomerce payment with Pay Pal. When I submit my order and it transfers me through the gateway to pay pal, but it does not add in shipping charges. It only shows the order sub-total. What is I missed? Please help.

 

My website is here: http://www.luckink.com/

  • 2 weeks later...
Posted

Try your paypal profile (on the paypal.com site)...select Shipping Calculations and check the box that allows for transaction based charges to overide your profile shipping charges.

Posted
No Shipping Charges On Pay Pal.

 

I testing oscomerce payment with Pay Pal. When I submit my order and it transfers me through the gateway to pay pal, but it does not add in shipping charges. It only shows the order sub-total. What is I missed? Please help.

 

My website is here: http://www.luckink.com/

If you are using paypal ipn (and you should be) set your shopping cart method to itemized and see if that helps.

The Knowledge Base is a wonderful thing.

Do you have a problem? Have you checked out Common Problems?

There are many very useful osC Contributions

Are you having trouble with a installed contribution? Have you checked out the support thread found Here

BACKUP BACKUP BACKUP!!! You did backup, right??

  • 3 weeks later...
Posted

Replace in catalog/includes/modules/payment/paypal.php

 

THIS:

 

$process_button_string = tep_draw_hidden_field('cmd', '_xclick') .

tep_draw_hidden_field('business', MODULE_PAYMENT_PAYPAL_ID) .

tep_draw_hidden_field('item_name', STORE_NAME) .

tep_draw_hidden_field('amount', number_format(($order->info['total'] - $order->info['shipping_cost']) * $currencies->get_value($my_currency), $currencies->get_decimal_places($my_currency))) .

tep_draw_hidden_field('shipping', number_format($order->info['shipping_cost'] * $currencies->get_value($my_currency), $currencies->get_decimal_places($my_currency))) .

tep_draw_hidden_field('currency_code', $my_currency) .

tep_draw_hidden_field('return', tep_href_link(FILENAME_CHECKOUT_PROCESS, '', 'SSL')) .

tep_draw_hidden_field('cancel_return', tep_href_link(FILENAME_CHECKOUT_PAYMENT, '', 'SSL'));

 

 

WITH THIS:

 

button_string = tep_draw_hidden_field('cmd', '_xclick') .

tep_draw_hidden_field('business', MODULE_PAYMENT_PAYPAL_ID) .

tep_draw_hidden_field('item_name', STORE_NAME) .

tep_draw_hidden_field('amount', number_format(($order->info['total'] - $order->info['']) * $currencies->get_value($my_currency), $currencies->get_decimal_places($my_currency))) .

tep_draw_hidden_field('shipping', number_format($order->info['shipping_cost'] * $currencies->get_value($my_currency), $currencies->get_decimal_places($my_currency))) .

tep_draw_hidden_field('currency_code', $my_currency) .

tep_draw_hidden_field('return', tep_href_link(FILENAME_CHECKOUT_PROCESS, '', 'SSL')) .

tep_draw_hidden_field('cancel_return', tep_href_link(FILENAME_CHECKOUT_PAYMENT, '', 'SSL'));

  • 1 month later...
Posted

Hi!!!

 

I was having the same problem! When I added Paypal IPN to my site...the price discount and the tax wouldn't show up on the total!! I finally figured out that the problem was PAYPAL not the website...you have to go to your Paypal account, click on your "Profile" tab and then "Shipping Calculations" Down at the bottom click the

****Click here to allow transaction-based shipping values to override the profile shipping settings listed above (if profile settings are enabled).***

 

SAVE and you are SET!! It makes it all work back on the site! Yahoooo! =0)Carissa

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...