This is searchable archive of our old support forums, which operated from 2012 - 2016. To find out how to get support for your current theme, please visit our support page.

Some User Roles Not Seeing Layout Builder

  • Creator
    Topic
  • #26045
    robidigital
    Participant

    I have two users with the Shop Manager role and neither can see the Layout Builder on the Edit Page screen. I’ve also tried to assign them the Editor role and have the same issue. Is there a way to assign Layout Builder permissions to user roles other than Administrator?

    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Author
    Replies
  • #26048
    Jason Bobich
    Keymaster

    Hi,

    I believe this is the relevent info. Here’s an article that explains:

    http://dev.themeblvd.com/tutorial/changing-user-role-access-for-admin-modules/

    So, for example:

    function my_module_caps( $caps ) {
        $caps['builder'] = 'manage_woocommerce';
        return $caps;
    }
    add_filter( 'themeblvd_admin_module_caps', 'my_module_caps' );

    BUT I’m not totally sure how this effects the edit page screen. I think it carries over. Give it a try.

    #26153
    robidigital
    Participant

    That worked perfectly! I just added your code to my child theme functions.php. Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.