vB4 Widget - Donations / Forum Sidebar - Donations

  • Downloading from our site will require you to have a paid membership. Upgrade to a Premium Membership today!

    Dont forget read our Rules! Also anyone caught Sharing this content will be banned. By using this site you are agreeing to our rules so read them. Saying I did not know is simply not an excuse! You have been warned.

Radio

    ven0m

    Administrator
    Staff member
    Administrator
    Moderator
    Platinum
    xenForo 2.x.x
    xenForo 1.x.x
    Contributor
    vBulletin All Access Pass
    The Chest
    Verified
    Ultra Platinum VIP
    Platinum VIP
    Gold VIP
    Silver VIP
    Premium
    Member
    Jul 17, 2005
    20,471
    7,711
    321
    localhost
    Heisenberg submitted a new resource:

    - Widget - Donations / Forum Sidebar - Donations

    vB Version: 4.0.0

    A simple donation widget for use on your site, tested on vB 4.0 GOLD.

    Can also be displayed on your Forum Sidebar. For instructions on adding it to the sidebar.

    How To Install Basic

    1. Files
      • Download the attached zip file, extract it.
      • Upload it's contents to your forum root.
    2. Create a widget
      • ADMIN CP > vBulletin CMS > Widgets >...

     
    Last edited:

    ven0m

    Administrator
    Staff member
    Administrator
    Moderator
    Platinum
    xenForo 2.x.x
    xenForo 1.x.x
    Contributor
    vBulletin All Access Pass
    The Chest
    Verified
    Ultra Platinum VIP
    Platinum VIP
    Gold VIP
    Silver VIP
    Premium
    Member
    Jul 17, 2005
    20,471
    7,711
    321
    localhost
    How To Install Basic Forum Sidebar
    1. Files
      • Download the attached zip file, extract it.
      • Upload it's contents to your forum root.
    2. Enable the Sideblock
      • ADMIN CP > Settings > Options > Forum Sidebar and Block Options > Edit Settings > Enable Forum Sidebar > Yes
    3. Create a Sideblock
      • ADMIN CP > Forums & Moderators > Forum Blocks Manager > Add Block > Select Block Type > Custom HTML/PHP
        • Title: Donations
        • Description: Sideblock for site donations.
        • Cache time: 1440
        • Content Type: HTML
      • Content
    Code:
    [I]<div align="center">If you like our website and would like to give something in return, you can make a donation. All donations are gratefully received.
    <br /><br />
    <form action="https://www.paypal.com/cgi-bin/webscr" target="_blank" method="post">
      <div>
     <input type="hidden" name="cmd" value="_xclick" />
     <input type="hidden" name="business" value="[email protected]" />
      <input type="hidden" name="item_name" value="www.YOURSITE.com Donation" />
      <input type="hidden" name="no_note" value="1" />
      <input type="hidden" name="tax" value="0" />
    <select name="currency_code">
    <option value="EUR">&euro; - EUR</option>
    <option value="GBP">&pound; - GBP</option>
    <option value="USD">$ - USD</option>
    </select>
      <select name="amount">
        <option value="10.00">10</option>
        <option value="15.00">15</option>
        <option value="20.00">20</option>
        <option value="25.00">25</option>
        <option value="50.00">50</option>
        <option value="100.00">100</option>
      </select>
      </div>
    <br />
    Select your preferred currency and donation amount, then click the donate button.
    <br /><br />
    <fieldset>
    <input type="image" src="images/cms/widget-donations_paypal.png" title="Pay via PayPal" alt="Pay via PayPal" />
    </fieldset>
       </form>
    </div>[/I]


    Template to Use

    block_html


    • NB. Change [email protected] and in Static HTML to suit your needs.

    How To Install Image Title Forum Sidebar

    1. Files
      • Download the attached zip file, extract it.
      • Upload it's contents to your forum root.
    2. Enable the Sideblock
      • ADMIN CP > Settings > Options > Forum Sidebar and Block Options > Edit Settings > Enable Forum Sidebar > Yes
    3. Create a new template
      • Admin CP > Styles & Templates > Style Manager > Add New Template
      • Title

    block_donations

    Template

    Code:
    [I]<li>
        <div class="block smaller">
            <div class="blocksubhead">
                <a class="collapse" id="collapse_block_donations" href="#top"><img alt="" src="{vb:stylevar imgdir_button}/collapse_40b.png" id="collapseimg_donations"/></a>
                <span class="blocktitle"><img src="{vb:stylevar imgdir_cms}/widget-donations_colour.png" title="{vb:raw blockinfo.title}" alt="" />{vb:raw blockinfo.title}</span>
            </div>
            <div id="block_donations" class="blockbody floatcontainer">
                <div class="blockrow">{vb:raw content}</div>
            </div>
        </div>
        <div class="underblock"></div>
    </li>[/I]
    • NB. Change {vb:stylevar imgdir_cms}/widget-donations_colour.png to suit your needs.

    Create a Sideblock
    • ADMIN CP > Forums & Moderators > Forum Blocks Manager > Add Block > Select Block Type > Custom HTML/PHP
      • Title: Donations
      • Description: Sideblock for site donations.
      • Cache time: 1440
      • Content Type: HTML
    • Content
    Code:
    [I]<div align="center">If you like our website and would like to give something in return, you can make a donation. All donations are gratefully received.
    <br /><br />
    <form action="https://www.paypal.com/cgi-bin/webscr" target="_blank" method="post">
      <div>
     <input type="hidden" name="cmd" value="_xclick" />
     <input type="hidden" name="business" value="[email protected]" />
      <input type="hidden" name="item_name" value="www.YOURSITE.com Donation" />
      <input type="hidden" name="no_note" value="1" />
      <input type="hidden" name="tax" value="0" />
    <select name="currency_code">
    <option value="EUR">&euro; - EUR</option>
    <option value="GBP">&pound; - GBP</option>
    <option value="USD">$ - USD</option>
    </select>
      <select name="amount">
        <option value="10.00">10</option>
        <option value="15.00">15</option>
        <option value="20.00">20</option>
        <option value="25.00">25</option>
        <option value="50.00">50</option>
        <option value="100.00">100</option>
      </select>
      </div>
    <br />
    Select your preferred currency and donation amount, then click the donate button.
    <br /><br />
    <fieldset>
    <input type="image" src="images/cms/widget-donations_paypal.png" title="Pay via PayPal" alt="Pay via PayPal" />
    </fieldset>
       </form>
    </div>[/I]


    Template to Use

    block_donations


    • NB. Change [email protected] and in Static HTML to suit your needs.

    If the donation block does not show up in the sidebar log out of your site then log back in and it should appear.
     
    Thread starter Similar threads Forum Replies Date
    ven0m vB4 Widget - Welcome User Log In/ Change To Paypal - Donations [4.0.x] Addons 0
    ven0m vB4 You are coming from Widget in CMS or sidebar [4.0.x] Addons 0
    ven0m vB4 eBuddy Messenger Widget [4.0.x] Addons 0
    ven0m vB4 Widget - Easy Chat Box for CMS [4.0.x] Addons 0
    ven0m vB4 eBay seller widget BB code (with your own affilliate ID) [4.0.x] Addons 0
    ven0m vB4 Widget: Auto ScreenShot of Styles Forum in CMS - by omardealo [4.0.x] Addons 0
    ven0m vB4 yahoo Widget in CMS & sidebar [4.0.x] Addons 0
    ven0m vB4 Members who are chatting in Flashchat widget or forum sideblock [4.0.x] Addons 0
    ven0m vB4 MSN Widget in CMS & sidebar-talk with admin [4.0.x] Addons 0
    ven0m vB4 eBay Search Box (Widget) [4.0.x] Addons 0
    ven0m vB4 Widget: PHPlist subscribe to newsletter [4.0.x] Addons 0
    ven0m vB4 Widget - Last 100 visitors map [4.0.x] Addons 0
    ven0m vB4 Youtube Videos Search Box (Widget) [4.0.x] Addons 0
    ven0m vB4 Photopost photos in CMS widget [4.0.x] Addons 0
    ven0m vB4 Twitter Search Widget BB code [4.0.x] Addons 0
    ven0m vB4 Who is chatting (widget) in Flashchat 6. [4.0.x] Addons 0
    ven0m vB4 Hall of Fame - Top vBExperience Members - Widget, Forum Block and VBA CMPS Module [4.0.x] Addons 0
    ven0m vB4 Wimpex (Widget Import / Export) [4.0.x] Addons 0
    ven0m vB4 [WIDGET] Weather Forecast [4.0.x] Addons 0
    ven0m vB4 Widget: Latest Articles In Category [4.0.x] Addons 0
    ven0m vB4 CMS widget : Welcome last member [4.0.x] Addons 0
    ven0m vB4 [Widget] Facebook Recommendations & Facebook Recent Activity [4.0.x] Addons 2
    ven0m vB4 CMS Widget - Most popular files from downloads II [4.0.x] Addons 0
    ven0m vB4 CMS Widget - Latest files added to downloads II [4.0.x] Addons 0
    ven0m vB4 [Widget] Recent Forum Posts only with Title and Time [update 10-jul-'10] [4.0.x] Addons 0
    ven0m vB4 GCBOS Widget for vb Suite Gold! [4.0.x] Addons 0
    ven0m vB4 Top posters widget type [4.0.x] Addons 0
    ven0m vB4 3x CMS widget : Widget with 3 tabs, like on Blogs page. [4.0.x] Addons 0
    ven0m vB4 YoBroMoFo - Facebook FanBox widget [4.0.x] Addons 0
    ven0m vB4 Widget - Show random members with picture [4.0.x] Addons 0
    ven0m vB4 Fully Costumizeable recruitment widget [4.0.x] Addons 0
    ven0m vB4 Widget: last articles blogs in CMS - by omardealo [4.0.x] Addons 0
    ven0m vB4 Follow Us Widget/Forum Block [4.0.x] Addons 0
    ven0m vB4 [WIDGET] Forum Stats [4.0.x] Addons 0
    ven0m vB4 [WIDGET] Slider [4.0.x] Addons 0
    ven0m vB4 English Prem League Fantasy Football Widget [4.0.x] Addons 0
    ven0m vB4 Widget - Little Chess Partner [4.0.x] Addons 0
    ven0m vB4 Twitter Username Widget BB code [4.0.x] Addons 0
    ven0m vB4 Photopost Pro Random Image Widget [4.0.x] Addons 0
    ven0m vB4 Widget: Team Speak [4.0.x] Addons 0
    ven0m vB4 Music Player CMS & Forum Widget [4.0.x] Addons 0
    ven0m vB4 Widget - Today's Birthdays [4.0.x] Addons 0
    ven0m vB4 Widget:Forums Category names/links in cms for version 4.0.1 - omardealo [4.0.x] Addons 0
    ven0m vB4 Widget: display random image thumbnail from public albums [4.0.x] Addons 0
    ven0m vB4 [WIDGET] Upcoming Events [4.0.x] Addons 0
    ven0m vB4 Widget: CMS Most Viewed Articles This Week [4.0.x] Addons 0
    ven0m vB4 Ebay Listing widget BB code (with your affiliate id added in) [4.0.x] Addons 0
    ven0m vB4 Slider Widget s3slider [4.0.x] Addons 0
    ven0m vB4 Weather Channel widget that uses members zip code [4.0.x] Addons 0
    ven0m vB4 Boom TICK CAPTCHA Widget [4.0.x] Addons 0
    Similar threads