dow5001 2018-10-10 18:34
浏览 46
已采纳

隐藏Woocommerce中特定用户角色的特定送货方式

In Woocommerce I am using WooCommerce Wholesale Pro Suite (from IgniteWoo) and Flat Rate Box Shipping plugins to add B2B to our eshop.

I am trying to disable the Flat Rate Box Shipping for specific user roles, guests and customers. I found this code after searching online:

add_filter( 'woocommerce_package_rates', 'hide_shipping_for_user_role', 10, 2 );
function hide_shipping_for_user_role( $rates, $package ) {
// Role ID to be excluded
$excluded_role = "wholesale_customer";

// Shipping rate to be excluded
$shipping_id = 'table_rate_shipping_free-shipping';

// Get current user's role
$user = wp_get_current_user();
if ( empty( $user ) ) return false;

if( in_array( $excluded_role, (array) $user->roles ) && isset( $rates[ $shipping_id ] ) )
unset( $rates[ $shipping_id ] );

return $rates;
}

What should I use in place of "wholesale_customer" and in place of "table_rate_shipping_free-shipping", so the Flat Rate Box Shipping is not showing, for guests and customers roles?

Any help is appreciated.

  • 写回答

1条回答 默认 最新

  • dqvzfp6468 2018-10-10 19:04
    关注

    Update 2:

    You may have to "Enable debug mode" in general shipping settings under "Shipping options" tab, to disable temporarily shipping caches.

    For info: The shipping method ID for "Flat rate boxes" is flat_rate_boxes.

    The following code will disable "Flat rate boxes" Shipping Methods For "Guests" (non logged in users) and "customer" user role:

    add_filter( 'woocommerce_package_rates', 'hide_specific_shipping_method_based_on_user_role', 30, 2 );
    function hide_specific_shipping_method_based_on_user_role( $rates, $package ) {
    
        ## --- Your settings --- ##
        $excluded_role = "customer"; // User role to be excluded
        $shipping_id = 'flat_rate_boxes'; // Shipping rate to be removed
    
        foreach( $rates as $rate_key => $rate ){
            if( $rate->method_id === $shipping_id ){
                if( current_user_can( $excluded_role ) || ! is_user_logged_in() ){
                    unset($rates[$rate_key]);
                    break;
                }
            }
        }
        return $rates;
    }
    

    Code goes in function.php file of your active child theme (or active theme). Tested and works.

    Don't forget to enable back shipping cache.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 保护模式-系统加载-段寄存器
  • ¥15 电脑桌面设定一个区域禁止鼠标操作
  • ¥15 求NPF226060磁芯的详细资料