Forums

[resolved] [WP Simple Paypal Shopping cart] Paypal : incorrectly formatted item amount... (2 posts)

  1. bilelhawari
    Member
    Posted 11 months ago #

    I'm using WP Simple Paypal Shopping cart, everything is fine and plugin implemantion is very easy.

    But there is a problem in the Checkout level (Paypal side):
    "The link you have used to enter the PayPal system contains an incorrectly formatted item amount."

    To enable this we have use Paypal-friendly format and fix 2 decimal points.

    Search in wp_shopping_cart.php for :
    <input type=\"hidden\" name=\"amount_$count\" value='".$item['price']."' />

    And replace it by :

    <input type=\"hidden\" name=\"amount_$count\" value='".number_format ($item['price'],2)."' />

  2. betoschaan
    Member
    Posted 2 months ago #

    Excelent!! THanks my friend!!!

Reply

You must log in to post.

About this Topic