• Hi, only the administrator can send reminders, previously the shop manager could.

    Is there an option to make it work in shop manager or is it a bug?

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

Viewing 1 replies (of 1 total)
  • Plugin Support Facundo Arano

    (@aranofacundo)

    Hi there,

    I hope you’re doing well. By default, the plugin will only give access to the plugin dashboard to the admin user, so if you want to give access to the shop manager, you will need to add the following PHP code to the functions.php file of your current theme:

    if( ! function_exists( 'yith_wcwtl_custom_enable_plugin_panel_for_shop_manager' ) ){
    add_filter( 'yith-wcwtl-register-panel-capabilities', 'yith_wcwtl_custom_enable_plugin_panel_for_shop_manager' );
    function yith_wcwtl_custom_enable_plugin_panel_for_shop_manager( $capability ){
    $capability = 'manage_woocommerce';
    return $capability;
    }
    }

    We’ll remain at your disposal.

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