Statistics: Posted by Cristián Lávaque — August 29th, 2011, 4:54 pm
Statistics: Posted by tkittredge — August 29th, 2011, 3:35 pm
Cristián Lávaque wrote:
Or you can create the shortcode for the buttons and change the output to URL WP Admin -> s2Member -> PayPal Buttons -> Shortcode Attributes -> ouput. Put them in a WP page, view it and copy the URL that each outputs. Now, in your sales page, you'd create an HTML form for the person to choose the plan and click the order button, but instead of submitting to PayPal, it'd submit to a custom script where you determine which of the plans he picked and redirect to the corresponding URL you generated earlier.
Statistics: Posted by Cristián Lávaque — August 26th, 2011, 11:33 pm
<input type="hidden" id="item_number" name="item_number" value="1">
<table>
<tr><td style="vertical-align: bottom"><select name="os0" onchange="document.getElementById('item_number').value = this.options[this.selectedIndex].id;">
<option id="1" value="Bronze">Bronze : $1.99USD - monthly</option>
<option id="2" value="Silver" selected="selected">Silver : $2.99USD - monthly</option>
<option id="3" value="Gold">Gold : $3.99USD - monthly</option>
</select></td><td style="vertical-align: bottom"><a href="#" onclick="formSubmit();"><img src="https://www.paypal.com/en_US/i/btn/btn_subscribe_SM.gif"></a></td></tr>
</table>
Statistics: Posted by tkittredge — August 26th, 2011, 8:50 am