Paypal button issue
Posted: September 25th, 2011, 7:44 am
Hello,
When I click on my Paypal button I have some strange infomation in the description field at this page https://www.paypal.com/cgi-bin/webscr :
I don't want to use the shortcode because I made some customization. I'm using some plug-in included TRUEedit. All filters are disabled except "do shortcode".
My url is http://www.exo-video.com/wordpress/tarifs
This is the code I use for the button (€ 1,00) :
Thank you for your help
When I click on my Paypal button I have some strange infomation in the description field at this page https://www.paypal.com/cgi-bin/webscr :
I don't want to use the shortcode because I made some customization. I'm using some plug-in included TRUEedit. All filters are disabled except "do shortcode".
My url is http://www.exo-video.com/wordpress/tarifs
This is the code I use for the button (€ 1,00) :
- Code: Select all
<form action="https://www.paypal.com/cgi-bin/webscr" method="post"><input type="hidden" name="business" value="paypal@exo-video.com" /> <input type="hidden" name="cmd" value="_xclick-subscriptions" /> <!-- Instant Payment Notification & Return Page Details --> <input type="hidden" name="notify_url" value="http://www.exo-video.com/wordpress/?s2member_paypal_notify=1" /> <input type="hidden" name="cancel_return" value="http://www.exo-video.com/wordpress/" /> <input type="hidden" name="return" value="http://www.exo-video.com/wordpress/?s2member_paypal_return=1" /> <input type="hidden" name="rm" value="2" /> <!-- Configures Basic Checkout Fields --> <input type="hidden" name="lc" value="" /> <input type="hidden" name="no_shipping" value="1" /> <input type="hidden" name="no_note" value="1" /> <input type="hidden" name="custom" value="www.exo-video.com" /> <input type="hidden" name="currency_code" value="EUR" /> <input type="hidden" name="page_style" value="paypal" /> <input type="hidden" name="charset" value="utf-8" /> <input type="hidden" name="item_name" value="Mention assez bien : Vidéos" /> <input type="hidden" name="item_number" value="1" /> <!-- Configures s2Member's Unique Invoice ID/Code --> <input type="hidden" name="invoice" value="<?php echo S2MEMBER_VALUE_FOR_PP_INV(); ?>" />
<!-- Identifies/Updates An Existing User/Member ( when/if applicable ) --> <input type="hidden" name="on0" value="<?php echo S2MEMBER_CURRENT_USER_VALUE_FOR_PP_ON0; ?>" /> <input type="hidden" name="os0" value="<?php echo S2MEMBER_CURRENT_USER_VALUE_FOR_PP_OS0; ?>" />
<!-- Identifies The Customer's IP Address For Tracking --> <input type="hidden" name="on1" value="<?php echo S2MEMBER_CURRENT_USER_VALUE_FOR_PP_ON1; ?>" /> <input type="hidden" name="os1" value="<?php echo S2MEMBER_CURRENT_USER_VALUE_FOR_PP_OS1; ?>" />
<!-- Controls Modify Behavior At PayPal® Checkout --> <input type="hidden" name="modify" value="0" /> <!-- Customizes Prices, Payments & Billing Cycle -->
<!--
<input type="hidden" name="amount" value="1.00" />--> <input type="hidden" name="src" value="1" /> <input type="hidden" name="srt" value="" /> <input type="hidden" name="sra" value="1" /> <!--
<input type="hidden" name="a1" value="0" />-->
<!--
<input type="hidden" name="p1" value="0" />-->
<!--
<input type="hidden" name="t1" value="M" />--> <input type="hidden" name="a3" value="1.00" /> <input type="hidden" name="p3" value="1" /> <input type="hidden" name="t3" value="M" /> <!-- Displays The PayPal® Image Button --> <input style="width: auto; height: auto; border: 0;" type="image" src="https://www.paypal.com/en_US/i/btn/btn_xpressCheckout.gif" alt="PayPal®" /></form>
Thank you for your help