• Hello,

    I would like to ask if there is a possibility I can allow users with the role Shop Manager to view, edit, create and delete/deactivate popups.

    Thanks for now.

    Kind regards,

    Kumar

Viewing 1 replies (of 1 total)
  • Plugin Support gonzalesc

    (@gonzalesc)

    Hi.
    By default popup post type has permission to “manage_options”

    But you can change it with this filter:

    <?php
    function timersys_change_roles($capability) {
    	return 'manage_popups';
    }
    add_filter('spu/settings_page/roles', 'timersys_change_roles', 10, 1);

    After, you must assign the users to this capability, you can use some plugin to users role.

    Regards

Viewing 1 replies (of 1 total)
  • The topic ‘Also allow this plugin for user role Shop Manager’ is closed to new replies.