Paypal Check our Price Difference?

Any idea why when doing a sample check out



I go from this in cs cart check out



Subtotal: $481.00

Selected shipping method cost: $65.45



Total cost:





$546.45



To this in the paypal check out:



Currency: U.S. Dollars Help

Amount: $481.00 USD

Shipping & Handling: $0.00 USD

Total Amount: $481.00 USD



It’s not passing on the right order total to include the shipping??





Thanks for any help I recieve! :slight_smile:

TTT Anyone? HELP? Please? :slight_smile:



I’d love to get this cart live

Would like to share the fix with you guys :slight_smile:



Any idea why when doing a sample check out

I go from this in cs cart check out

Subtotal: $481.00

Selected shipping method cost: $65.45

Total cost:

$546.45

To this in the paypal check out:

Currency: U.S. Dollars Help

Amount: $481.00 USD

Shipping & Handling: $0.00 USD

Total Amount: $481.00 USD

It’s not passing on the right order total to include the shipping??

Thanks for any help I recieve!



Unfortunately, this is the bug in CS-Cart 1.3.3.

In order to fix it in your CS-Cart please edit “fn_cart.php” file in “core” directory of your CS-Cart installation.

Open the file and find the following line:



extract(fn_calculate_cart_content($cart, $auth, false, true, ‘S’, true));





Then add the following line ABOVE it:



$original_cart = $cart;





Then add the following line BELOW it:



$cart = $original_cart;





So this part of code should look like:



$original_cart = $cart;

extract(fn_calculate_cart_content($cart, $auth, false, true, ‘S’, true));

$cart = $original_cart;





Save the file.



Sorry for possible inconvenience.



Thank you.

Thanks for the update! Shouldn’t we be receiving a broadcast email from CS-Cart regarding important bug fixes such as this one?

You’d think? I’m just not sure why they did not update the current vertsion available with this and release a patch?



I tried this fix, and it passed 100% of the cost in the product cost, and still left my shipping as zero dollars. :confused: I zeroed out my default shipping costs in Paypal, and checked Click here to allow transaction-based shipping values to override the profile shipping settings listed above (if profile settings are enabled). I still can’t get it to pass the correct shipping amount

Im having the same problem except I have v. 1.3.4 sp2.

Will this fix work with 1.3.4 sp2?