Note that there are some explanatory texts on larger screens.

plurals
  1. POHow to display only order total in paypal checkout page as like ebay do
    primarykey
    data
    text
    <p>have a weird problem.As I have a shopping cart on my website I decided to integrate this to paypal. Its working like charm</p> <pre><code>&lt;form action="https://www.paypal.com/cgi-bin/webscr" method="post"&gt; &lt;input type="hidden" name="cmd" value="_cart"&gt; &lt;input type="hidden" name="upload" value="1"&gt; &lt;input type="hidden" name="business" value="seller@test.com"&gt; &lt;input type="hidden" name="item_name_1" value="Item Name 1"&gt; &lt;input type="hidden" name="amount_1" value="1.00"&gt; &lt;input type="hidden" name="shipping_1" value="1.75"&gt; &lt;input type="hidden" name="item_name_2" value="Item Name 2"&gt; &lt;input type="hidden" name="amount_2" value="2.00"&gt; &lt;input type="hidden" name="shipping_2" value="2.50"&gt; &lt;input type="submit" value="PayPal"&gt; &lt;/form&gt; </code></pre> <p>What happens was I decided to <strong>not to show item wise descriptions except order total</strong> in paypal cehckout page(just like ebay do).</p> <p><img src="https://i.stack.imgur.com/nGkLT.jpg" alt="ebay"></p> <p>So i change my code as follows</p> <pre><code>&lt;form action="https://www.paypal.com/cgi-bin/webscr" method="post"&gt; &lt;input type="hidden" name="cmd" value="_xclick"&gt; &lt;input type="hidden" name="business" value="seller@test.com"&gt; &lt;input type="hidden" name="amount" value="5.40"&gt; &lt;input type="submit" value="PayPal"&gt; &lt;/form&gt; </code></pre> <p>But when i use this,on the checkout page it appears like this <img src="https://i.stack.imgur.com/yA0Yq.jpg" alt="paypal checkout"></p> <p>Please help what I have done wrong? Thanks in Advance.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload