The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
Paypal Module (dropdown) On vBa CMPS Details »» | |||||||||||||||||||||||||||
Paypal Module (dropdown) On vBa CMPS
Developer Last Online: Nov 2023
This is fairly simple to install ill post the code incase the module dont work. but before i go any further i would like to thank derekivey for helping me out on this... so here is a image to show you how it looks... and i am trying to explain this as best as i can and make it as simple as i can... keep in mind you can change the image by going to paypal and chose another one of there images
make a new template named it adv_portal_paypal and in that template add this code... Code:
<tr> <td class="$bgclass"> <div align="center"><span class="smallfont">If You Like This Website, And Would Like To Give Something In Return, You Can Make A Donation. Your Donation Will Be Used To Pay For Hosting Service, Domain, And Maintenance Costs Only!</span></div> <br /> <form action="https://www.paypal.com/cgi-bin/webscr" target="_blank" method="post"> <div align="center"> <input type="hidden" name="cmd" value="_xclick" /> <input type="hidden" name="business" value="youremail@whatever.com" /> <input type="hidden" name="item_name" value="Website Support Donation" /> <input type="hidden" name="no_note" value="1" /> <input type="hidden" name="currency_code" value="USD" /> <input type="hidden" name="tax" value="0" /> $ <select name="amount"> <option value="1.00">1.00</option> <option value="2.00">2.00</option> <option value="3.00">3.00</option> <option value="4.00">4.00</option> <option value="5.00">5.00</option> <option value="10.00">10.00</option> <option value="20.00">20.00</option> <option value="25.00">25.00</option> <option value="50.00">50.00</option> <option value="100.00">100.00</option> </select> </div> <br /> <br /> <div align="center"><span class="smallfont">Select Your Donation Amount And Then Press The Donate Button.</span></div> <br /> <fieldset class="fieldset" style="margin:0px 0px 0px 0px"> <br /> <div align="center"><input type="image" src="https://www.paypal.com/en_US/i/btn/x-click-butcc-donate.gif" alt="Make payments with PayPal - it's fast, free and secure!" /><br /><br /></div></fieldset> </form> </td> </tr> in the code make sure you change youremail@whatever.com to your email... then add a module, you want to add a Template Module and in the module settings add this Module Title: Donations Template to Include: adv_portal_paypal Use Module Shell Template : yes Title Row Colspan: 1 and set your Usergroups to what ever you want hope this helps and if any one wants to edit the code or make it easier to install feel free. it is 100% html complaint. please let me know if you have any problems ******************* 3/12/05 changed the code a bit also made a module where they can input the donation amount... ******************* New Module Code ******************* Code:
<tr> <td class="$bgclass"> <div align="center"><span class="smallfont">If You Like This Website, And Would Like To Give Something In Return, You Can Make A Donation. Your Donation Will Be Used To Pay For Hosting Service, Domain, And Maintenance Costs Only!</span></div> <br /> <form action="https://www.paypal.com/cgi-bin/webscr" target="_blank" method="post"> <div align="center">$ <input type="text" name="amount" size="6" value="5.00" /> <input type="hidden" name="cmd" value="_xclick" /> <input type="hidden" name="business" value="youremail@whatever.com" /> <input type="hidden" name="item_name" value="Website Support Donation" /> <input type="hidden" name="no_note" value="1" /> <input type="hidden" name="currency_code" value="USD" /> <input type="hidden" name="tax" value="0" /> </div> <br /> <br /> <div align="center"><span class="smallfont">Select Your Donation Amount And Then Press The Donate Button.</span></div> <br /> <fieldset class="fieldset" style="margin:0px 0px 0px 0px"> <br /> <div align="center"><input type="image" src="https://www.paypal.com/en_US/i/btn/x-click-butcc-donate.gif" alt="Make payments with PayPal - it's fast, free and secure!" /><br /><br /></div></fieldset> </form> </td> </tr> the second code allows users to input there donation amout and is installed the same..... ******************* Future Plans: would like to set it up to track the donations via Paid Subscriptions ******************* Show Your Support
|
Comments |
#32
|
||||
|
||||
*Installed*
Thanks. |
#33
|
|||
|
|||
Quote:
This is what I added to my navbar 2 template. You don't need CMPS for this paypal to work. All the credit goes to DementedMindz really, I just tweaked it a little. DementedMindz, if it's not cool then tell me and I'll take this down. Don't forget to change the your@site.com to your real paypal email address. Code:
<!-- nav buttons bar --> <div align="center"> <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="0" border="0" width="100%" align="center" style="border-top-width:0px"> <tr align="center"> <!-- Home link in navbar non drop down menu --> <td class="vbmenu_control"><a href="/index.php?$session[sessionurl]">Home</a></td> <!-- / Home link in navbar non drop down menu --> <!-- Forum link in navbar non drop down menu --> <td class="vbmenu_control"><a href="/forum/index.php?$session[sessionurl]">Forums</a></td> <!-- / Forum link in navbar non drop down menu --> <!-- Setup for drop down menu #1 in navbar --> <td id="dropdown1" class="vbmenu_control"><a href="#dropdown1">Donate</a> <script type="text/javascript"> vbmenu_register("dropdown1"); </script></td> <!-- / Setup for down menu #1 in navbar--> </tr> </table> </div> <!-- / nav buttons bar --> <!-- NAVBAR POPUP MENUS --> <!-- Drop down for menu #1 in navbar--> <div class="vbmenu_popup" id="dropdown1_menu" style="display:none"> <table cellpadding="4" cellspacing="1" border="0"> <tr><td class="thead">Donate</a></td></tr> <tr> <td class="$bgclass"> <br /> <center> <form action="https://www.paypal.com/cgi-bin/webscr" target="_blank" method="post"> <input type="hidden" name="cmd" value="_xclick" /> <input type="hidden" name="business" value="your@site.com" /> <input type="hidden" name="item_name" value="Website Support Donation" /> <input type="hidden" name="no_note" value="1" /> <input type="hidden" name="currency_code" value="USD" /> <input type="hidden" name="tax" value="0" /> $<SELECT NAME="amount"> <OPTION value="1.00">1.00</option> <OPTION value="2.00">2.00</option> <OPTION value="3.00">3.00</option> <OPTION value="4.00">4.00</option> <OPTION value="5.00">5.00</option> <OPTION value="10.00">10.00</option> <OPTION value="20.00">20.00</option> <OPTION value="25.00">25.00</option> <OPTION value="50.00">50.00</option> <OPTION value="100.00">100.00</option> </SELECT> <br /><br /> <center><span class="smallfont">Select your donation amount<br /> & press the Donate button.</span></center> <br /> <tr> <td class="$getbgrow" align="center"><span class="smallfont"> <fieldset class="fieldset" style="margin:0px 0px 0px 0px"> <br /> <input type="image" src="https://www.paypal.com/en_US/i/btn/x-click-but04.gif" border="0"></a> <br /><br /> </td> </tr> </table> </div> <!-- / Drop down for menu #1 in navbar--> <!-- / NAVBAR POPUP MENUS --> |
#34
|
|||
|
|||
Trickle do you have any screen shots of it? also i would never tell you to take it down cause anything to help out everyone is fine by me
|
#35
|
|||
|
|||
I've attached 2 pics, one where the hack is actually on my CMPS page and the second I went to the arcade page to demonstrate how I can still donate by clicking on the donate button on my second navbar at the top right. Even if you don't use a second navbar you can still use your code and place in on the original navbar.
Trickle |
#36
|
|||
|
|||
ahhh i see thats tight i like that too i didnt even think of that make sure you click install too
|
#37
|
|||
|
|||
My bad <click>
Trickle |
#38
|
|||
|
|||
How would you get this to work on the navbar as well, this is exactly what i want. Thanks installed on portal.
|
#39
|
|||
|
|||
to be honest i havent tried his yet but give me like a hour and ill try it or if he comes back he might be able to tell you but ill try it really soon just uploading some stuff right now
|
#40
|
|||
|
|||
Quote:
Tell me what you want on your navbar like home, memberslist..... and I'll put the donate in for you. Is this going on the original navbar or do you have a second navbar as well? Trickle |
#41
|
|||
|
|||
Quote:
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|