Only use the admin section for Prosites

Is it possible to only use the admin side of Prosites?

I will be manually providing the sites for people as part of something else, so they won’t be paying for it, but I like some of the options in Prosites that can be used to organise things (such as two tiers of membership).

  • Alexander
    • DEV MAN’s Mascot

    @Dark Scream,

    I suppose we could detach the menu page.

    You can add this code within a network activated plugin.

    add_action('admin_menu','unplug_pro_sites_menu',-100);
    function unplug_pro_sites_menu(){
    global $psts;
    remove_action('admin_menu',array($psts, 'plug_pages') );
    }