6
@ladysham
Sorry, no live site at present.
To use PayPal 'buy-now' buttons you basically add some forms to matrix.php - one for each subscription type. When the user submits a form (by pressing the button) it passes details of the purchase - in this case a premium listing - to your PayPal account checkout.
An example 'buy-now' button form is shown below.
* The name='business' value needs to be your PayPal login email.
* The name='item_name' is what they are buying.
* The input type='image' is the button art. This form uses one from the PP website, but you can use the local buttons supplied with MX-Directory.
<form name="_xclick" action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="business" value="me@mybusiness.com">
<input type="hidden" name="currency_code" value="USD">
<input type="hidden" name="item_name" value="Gold Directory Listing - 12 months">
<input type="hidden" name="amount" value="12.99">
<input type="image" src="http://www.paypal.com/en_US/i/btn/x-click-but01.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!">
form>
You need a separate form for each listing type. The user completes the transaction on the PP site and you are notified by email.
There's more info on
the PayPal website.
A thread is for life. Not just for Christmas.