• gruen18312

    (@gruen18312)


    I want to give my Shop Manager or Editor user permission to edit shop brands and add text and graphics to the page description. In the standard user permissions, there is no way to give brand edit abilities to Shop Managers or Editors. These users cannot see the YITH Brand plugin to edit the brand descriptions. How can I do this?

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Support Juan Coronel

    (@juaancmendez)

    Hello there,
    we hope you’re doing well!

    In order to achieve what you need, add the following code in the functions.php file of your active child theme:

    if ( ! function_exists('yith_wcbr_settings_panel_capability_shop_manager' ) ) {
        function yith_wcbr_settings_panel_capability_shop_manager( $capability ) {
            $capability = 'manage_woocommerce';
    
            return $capability;
        }
    
        add_filter( 'yith_wcbr_panel_capability', 'yith_wcbr_settings_panel_capability_shop_manager' );
    }

    Check it out and tell us if it works well for you, please.

    Best regards.

Viewing 1 replies (of 1 total)
  • The topic ‘Shop Manager or Editor access to Brand Descriptions’ is closed to new replies.