• Resolved mmihelic

    (@mmihelic)


    Hi!

    We are using an augmented version of the Exclude Plugins plugin. We use it to disable administration/settings/options menus for all users except the network admin.
    We made the following little change to the Cookie Law Info plugin’s custom-post-types.php file to meet our needs.
    Instead of
    register_post_type( 'cookielawinfo' , $args );
    we put

    if (is_super_admin()) {
    	register_post_type( 'cookielawinfo' , $args );
    };

    It may not be the best of solutions, but it works for us.

    Regards.

    https://www.ads-software.com/extend/plugins/cookie-law-info/

Viewing 1 replies (of 1 total)
  • Hi, thanks very much for sharing ?? I’ll add this to the development list and will include it with the next release (no date currently planned I might add).

    Regards
    Richard

Viewing 1 replies (of 1 total)
  • The topic ‘Network/Multisite compatibility’ is closed to new replies.