• Welcome to XF2 Addons

    You can purchase a Premium membership for only $35 per year, and this gives you access to download any or ALL of the over 400 add-ons developed for Xenforo 2.x. In addition, Premium members will get technical support. Once the Premium membership has expired you can continue to use the installed addons on your forum as long as you like.

Donations tab

Andy

Administrator
Staff member
Instructions on how to create a Donations tab.

Step 1.

Admin control panel -> Setup -> Public navigation

1612707205045.jpg
 
Step 3.

Enter the following Edit HTML:

Code:
<br />

<div class="block-container">
    <h2 class="block-header">
        Upgrade
    </h2>
    <div class="block-body" style="padding:20px">
        To upgrade your account to Premium so you can download resources:
        <br /><br />
        <a href="https://www.xf2addons.com/account/upgrades">Click to upgrade account</a>
    </div>
</div>

<br />

<div class="block-container">
    <h2 class="block-header">
        Multiple forums
    </h2>
    <div class="block-body" style="padding:20px">
        If you are using add-ons on multiple forums but have only one membership account, you can make a donation for these additional forums here:
        <br /><br />
        <a href="https://paypal.me/andybajka">Click here to make a donation</a>
    </div>
</div>

<br />

<div class="block-container">
    <h2 class="block-header">
        Troubleshooting
    </h2>
    <div class="block-body" style="padding:20px">
        If you would like to make a donation for troubleshooting help:
        <br /><br />
        <a href="https://paypal.me/andybajka">Click here to make a donation</a>
    </div>
</div>

<br />

<div class="block-container">
    <h2 class="block-header">
        Features added
    </h2>
    <div class="block-body" style="padding:20px">
        If you would like to make a donation for add-on features added by your request:
        <br /><br />
        <a href="https://paypal.me/andybajka">Click here to make a donation</a>
    </div>
</div>

<br />
 
This thread inspired me to work a little bit on configuring my "public navigation". I now have a Donation tab for guests only (hidden to members) and an Upgrade tab for members only (hidden to guests) on my site. :)
 
Back
Top