![]() |
|
|||||||
| phpBB3 Manuals and Guides You will find out how to admin a forum, change forum style and many other guides. Other online helps: http://www.phpbb.com/support/documentation/3.0/, http://www.phpbb.com/support/tutorials/3.0/, http://www.phpbb.com/kb/3.0/. |
![]() |
|
|
LinkBack | Thread Tools | Display Modes |
|
|||
|
bbcode....buy it button
Here's one that may appeal to a lot of users,
paypal buy it button This code will allow users to sell an item on your forum, ideal if you have a community that has a specific interest. eg: if the forums a camera club a member may have accessories that they want to sell to another user, or a gaming forum a member may have a game they want to sell. bbcode Code:
[buy_now={EMAIL},{SIMPLETEXT},{SIMPLETEXT1},{IDENTIFIER},{SIMPLETEXT2}][/buy_now]
Html replacement Code:
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<fieldset>
<input type="hidden" name="cmd" value="_xclick" />
<input type="hidden" name="business" value="{EMAIL}" />
<input type="hidden" name="lc" value="GB" />
<input type="hidden" name="item_name" value="{SIMPLETEXT}" />
<input type="hidden" name="amount" value="{SIMPLETEXT1}" />
<input type="hidden" name="currency_code" value="{IDENTIFIER}" />
<input type="hidden" name="button_subtype" value="services" />
<input type="hidden" name="no_note" value="0" />
<input type="hidden" name="shipping" value="{SIMPLETEXT2}" />
<input type="hidden" name="bn" value="PP-BuyNowBF:btn_buynowCC_LG.gif:NonHostedGuest" />
<input type="image" src="https://www.paypal.com/en_US/GB/i/btn/btn_buynowCC_LG.gif" name="submit" alt="PayPal - The safer, easier way to pay online." />
<img src="https://www.paypal.com/en_GB/i/scr/pixel.gif" width="1" height="1" alt="Buy NOW!" />
</fieldset>
</form>
Code:
Buy now : [buy_now=eamiladdress,item name,price,currency,postage][/buy_now] Code:
[buy_now=emailname@?.com,camera,100.00,GBP,3.00][/buy_now] Additional information 1/ To sell anything , the person selling will need to have an account with paypal first 2/ From the example and helpline you will see how your users need to fill out the information needed making sure to use the comer (,) between the information. 3/It is always a good idea that the forum administrator makes a post to add a disclaimer stating that you are not responsible for any item sold on your forum Disclaimer freeforum.ca and the author of this post are not responsible for any item sold on your forum or any information given through the use of this bbcode Last edited by Paul : 04-02-2011 at 07:22 AM. |