Add-on Free Donation Add-on

Any free doantion addons that someone can link me to? I have been looking through the resources and cannot find it. Looking for a little bit of help.

I do understand there is a donation manage that is paid for but I am looking for a free one. Thank you for any help.
 
Nothing as extensive as the donation add-on for free... xenporta has a simple donation block if I recall.

You could also use pages to setup some sort of donation page.

Lastly Robbo's donation plugin works wonders... our donations increased a ton since we installed it so it paid for itself quick.
 
Nothing as extensive as the donation add-on for free... xenporta has a simply donation block if I recall.

You could also use pages to setup some sort of donation page.

Lastly Robbo's donation plugin works wonders... our donations increased a ton since we installed it so it paid for itself quick.

Yes, I understand. My problem is I just bought a new Xenforo license, filled up my gas tank and got hit with a traffic ticket... The funds just are not in the right area at the moment. Thank you for your help.
 
@Sheldon Did you manage to get this to work?

I tried. Installed fine, but when i add <xen:include template="GP_donations" /> to forum_list:
Code:
<xen:h1></xen:h1>

<xen:container var="$head.canonical"><link rel="canonical" href="{xen:link 'canonical:forums'}" /></xen:container>
<xen:if is="{$xenOptions.boardDescription}"><xen:container var="$head.description">
   <meta name="description" content="{$xenOptions.boardDescription}" /></xen:container></xen:if>
<xen:container var="$head.openGraph">
   <xen:include template="open_graph_meta">
     <xen:set var="$url">{xen:link 'canonical:forums'}</xen:set>
     <xen:set var="$title">{$xenOptions.boardTitle}</xen:set>
     <xen:set var="$ogType">website</xen:set>
   </xen:include></xen:container>

<xen:hook name="forum_list_nodes">
   <xen:if is="{$renderedNodes}"><xen:include template="node_list" /></xen:if>
</xen:hook>
  
<xen:sidebar>
   <xen:edithint template="sidebar.css" />
  
   <xen:hook name="forum_list_sidebar">
     <xen:include template="sidebar_online_users" />
    
     <!-- block: forum_stats -->
     <div class="section">
       <div class="secondaryContent statsList" id="boardStats">
         <h3><xen:if is="@uix_fontAwesome"><span class="icon_fA icon-bar-chart"></span> </xen:if>{xen:phrase forum_statistics}</h3>
         <div class="pairsJustified">
           <dl class="discussionCount"><dt>{xen:phrase discussions}:</dt>
             <dd>{xen:number $boardTotals.discussions}</dd></dl>
           <dl class="messageCount"><dt>{xen:phrase messages}:</dt>
             <dd>{xen:number $boardTotals.messages}</dd></dl>
           <dl class="memberCount"><dt>{xen:phrase members_count}:</dt>
             <dd>{xen:number $boardTotals.users}</dd></dl>
           <dl><dt>{xen:phrase latest_member}:</dt>
             <dd><xen:username user="$boardTotals.latestUser" /></dd></dl>
           <!-- slot: forum_stats_extra -->
         </div>
       </div>
     </div>
     <!-- end block: forum_stats -->
    
     <xen:include template="sidebar_share_page">
       <xen:set var="$url">{xen:link canonical:forums}</xen:set>
     </xen:include>
    
     <!-- GP Donations Manager -->
     <xen:include template="GP_donations" />

    
   </xen:hook>
</xen:sidebar>

nothing shows up in sidebar :/
 
Last edited:
I already tried [gp] Donations, added <xen:include template="GP_donations" /> like shown in my previous post. Did not work.

In add-on thread (which is closed) is says:
follow the steps in http://xenforo.com/community/resources/widget-for-gp-donations-add-on-on-widgetframework.405/

You must have installed the GP Donations add-on, [bd] Widget Framework v1.1.2 and XenFacil's WidgetFramework Renderers.

Installation:

  1. Install (if needed) GP Donations add-on.
  2. Install (if needed) [bd] Widget Framework
  3. Install (if needed) XenFacil's WidgetFramework Renderers
  4. upload folders and files within 'upload' folder to your XenForo's forum root.
  5. You must configure XenFacil's WidgetFramework Renderers options ONLY with GPDonations_GPDWidget (delete the rest) and save changes.
  6. ACP -> Appareance -> Add Widget -> Select Render GP Donations and set the rest as you like.
  7. Enjoy.
XenFacil's WidgetFramework Renderers failed to install, so i'm like stuck here :/
 
Nope. Did not use widgets.

I added <xen:include template="GP_donations" /> to forum_list template (like said in [GP]Donations installation instructions):
Code:
<xen:h1></xen:h1>

<xen:container var="$head.canonical"><link rel="canonical" href="{xen:link 'canonical:forums'}" /></xen:container>
<xen:if is="{$xenOptions.boardDescription}"><xen:container var="$head.description">
<meta name="description" content="{$xenOptions.boardDescription}" /></xen:container></xen:if>
<xen:container var="$head.openGraph">
<xen:include template="open_graph_meta">
<xen:set var="$url">{xen:link 'canonical:forums'}</xen:set>
<xen:set var="$title">{$xenOptions.boardTitle}</xen:set>
<xen:set var="$ogType">website</xen:set>
</xen:include></xen:container>

<xen:hook name="forum_list_nodes">
<xen:if is="{$renderedNodes}"><xen:include template="node_list" /></xen:if>
</xen:hook>

<xen:sidebar>
<xen:edithint template="sidebar.css" />

<xen:hook name="forum_list_sidebar">
<xen:include template="sidebar_online_users" />

<!-- block: forum_stats -->
<div class="section">
<div class="secondaryContent statsList" id="boardStats">
<h3><xen:if is="@uix_fontAwesome"><span class="icon_fA icon-bar-chart"></span> </xen:if>{xen:phrase forum_statistics}</h3>
<div class="pairsJustified">
<dl class="discussionCount"><dt>{xen:phrase discussions}:</dt>
<dd>{xen:number $boardTotals.discussions}</dd></dl>
<dl class="messageCount"><dt>{xen:phrase messages}:</dt>
<dd>{xen:number $boardTotals.messages}</dd></dl>
<dl class="memberCount"><dt>{xen:phrase members_count}:</dt>
<dd>{xen:number $boardTotals.users}</dd></dl>
<dl><dt>{xen:phrase latest_member}:</dt>
<dd><xen:username user="$boardTotals.latestUser" /></dd></dl>
<!-- slot: forum_stats_extra -->
</div>
</div>
</div>
<!-- end block: forum_stats -->

<xen:include template="sidebar_share_page">
<xen:set var="$url">{xen:link canonical:forums}</xen:set>
</xen:include>

<!-- GP Donations Manager -->
<xen:include template="GP_donations" />


</xen:hook>
</xen:sidebar>

e: We are not using Widgets, moreover dunno how to use it nor what benefits would it offer...

e2: I think i won't bother anything as this add-on seems to be dead.
 
Last edited:
Top Bottom