Will XenForo support an Ad Supported Site

owtlawatv

Member
I know, no one likes to have there browser cluttered with ads all over the place, but this is a valid question.

I have ran many forums/websites through my years and have somewhat figured out the best way to do this. In my experience, I have paid the bills with more membership/ad reduction fees than actual advertisement commission.

With that said. I would like to know how easy it would be to implement an ad system to Xenforo and turn them off with an account upgrade. I'm not talking about ads galore, just ads at the top bottom and after the first post.
 
There are ad templates included with the default style.

You can use group or guest conditionals to show them to certain groups or members.

The User Upgrades system can be used to remove adverts from those members who upgrade.

This is exactly how I implemented it on my site.
 
I am sure I am completly missing it, but I cant seem to find the area to display them to certain groups.
It would be nice to be able to make a user group called "paid" and assign the style called "paid" to it.
So when the account upgrade places a regular member to the "paid" user group, it also switches their style to "paid" and the ads are gone.
 
You need to use conditionals, as I posted previously.

So for example:
<xen:if is="!{xen:helper ismemberof, $visitor, 3} AND !{xen:helper ismemberof, $visitor, 4}">
Ad code here
</xen:if>

The User Upgrades system will add the members to the new group and the conditional will do the rest.

The code above will hide adverts for members of user groups 3 (Administrative) or 4 (Moderating).
 
You would use a template conditional to check if a user is part of a specific group. Brogan's signature has more information about template conditionals.

Edit: What I get for walking away to answer the door.

ok i understand now.
but I thing the whole linking a style to a user group would be a great plus.
I agree to a point, however unless you're going to do something drastic with a members only style, template conditionals will cover what you need as a whole.
 
That is just the thing. I do drastic changes to some of my members sites.
For starters I change the ad banners to advertise different ads.
Then I will change logos, and backgrounds.
On some sites, I will add different menu options.
The whole goal, is to make members feel like members. So I change the whole look and feel.
Im sure this info is no secret but it helps to bring in more membership dollars.
Ive spent hours among hours customizing members sites.... and it just seems that this would be a very good feature in the future.
 
You could create a style for each usergroup and allow each usergroup access to use only the style created for them. Just create them as childs of the public style and make the appropriate edits to the advertisements (sizes, etc).

Example:

-| Default Style
--| Public Style (non-paid members)
---| Paid Members (less ads, etc)
---| More Paid Members
---| More & More Paid Members

The idea is that you only make the changes to each child style as relative to the public style that everyone sees.
 
Top Bottom