kreamweb
2/17/2017 - 9:45 AM

this snippets extend the options to shop manager

this snippets extend the options to shop manager

<?php

if ( function_exists( 'YITH_WC_Points_Rewards_Admin' ) ) {
   if ( YITH_WC_Points_Rewards()->get_option( 'enabled_shop_manager' ) == 'yes' ) {
      if ( current_user_can( 'manage_woocommerce' ) && ! current_user_can( 'manage_options' ) ) {
 add_menu_page( 'ywpar_manage_point_panel', 'Points and Rewards ', 'manage_woocommerce', 'admin.php?page=yith_woocommerce_points_and_rewards&tab=customers', NULL,NULL, "62.32" );
 remove_filter( 'ywpar_show_admin_tabs', array(
 YITH_WC_Points_Rewards_Admin(),
 'show_tabs_for_shop_manager'
 ) );
      }
   }
}