Supporter Plugin in the full site

Hello

I’m using the Supporter plugin with WPMU 2.7 and Buddypress (http://www.buddypress.com)

When someone become a Supporter I would like disabe the ads, not only in the blog, but in the all pages of the site.

Blog without ads working http://voiceover-casting.com/voicepro/

I’ve already installed the supporter codes (the same that works in the blog) to disable the ads if the member is a supporter, in their profile but the ads continue to show up.

Look at Profile Page http://voiceover-casting.com/members/voicepro/

Anyone can help me disable all site ads if he is a supporter?

  • produlz
    • WPMU DEV Initiate

    Hi Andrew.

    The codes are correct on my pages. In the user blog the function works fine, but in profile page not. Maybe, it happens because in BuddyPress the admin is the owner of Members page. I will try find a solution in the buddypress foruns.

    Now i’m trying to use the Ad Removal from Upgrades plugin but I’m really didn’t understand how it works! Is instaled and working on the package but the ads not.

    Can you explain? Need I use WSA and configure the rule or Where I put the Ads configuration? Do you have a sample code?

    Thank you for your great job.

    Fernando

  • produlz
    • WPMU DEV Initiate

    Hello I found by my self the usage of the Ad Removal (inside of upgrades plugin). Basicaly is the same usage for Supporters plugin.

    To show ads in NOT upgraded blogs

    <?php
    if (upgrades_show_ads()) {
    //show ads
    ?>
    YOUR HTML ADD CODE GOES HERE
    <?php
    } else {
    //do not show ads
    }
    ?>

    To show a message on Upgraded blog:

    <?php
    if (upgrades_show_ads()) {
    //show ads
    } else {
    //do not show ads
    ?>
    I'M PREMIUM MEMBER (Type your MESSAGE here)
    <?php
    }
    ?>

    I hope it help people like me and if possible please include the usage help inside the plugin package.

    Now I will try extend the ad removal function for the full site!