du0923 2018-08-28 21:49
浏览 92
已采纳

在WooCommerce中设置特定国家/地区的最小允许权重

I am trying to specifically apply a mandatory minimum weight of 20 kilos for the country of Colombia avoiding checkout if the total cart weight is under this minimal weight.

Here is my actual code, that allow me to fix a minimum weight:

add_action( 'woocommerce_check_cart_items', 'cldws_set_weight_requirements' );
function cldws_set_weight_requirements() {
    // Only run in the Cart or Checkout pages
    if( is_cart() || is_checkout() ) {
        global $woocommerce;
        // Set the minimum weight before checking out
        $minimum_weight = 30;
        // Get the Cart's content total weight
        $cart_contents_weight = WC()->cart->cart_contents_weight;
        // Compare values and add an error is Cart's total weight
        if( $cart_contents_weight < $minimum_weight  ) {
            // Display our error message
            wc_add_notice( sprintf('<strong>A Minimum Weight of %s%s is required before checking out.</strong>'
                . '<br />Current cart weight: %s%s',
                $minimum_weight,
                get_option( 'woocommerce_weight_unit' ),
                $cart_contents_weight,
                get_option( 'woocommerce_weight_unit' ),
                get_permalink( wc_get_page_id( 'shop' ) )
                ),
            'error' );
        }
    }
}

How can I make it work for only for Colombia country?

  • 写回答

1条回答 默认 最新

  • douyu1656 2018-08-28 23:27
    关注

    Update (for Argentina and Colombia shipping counties)

    I have revisited your code and make it work just for colombia with a minimal weight of 20 kilos. You will need to check the weight unit as it should be "Kg" (in Kilos).

    The code:

    add_action( 'woocommerce_check_cart_items', 'checkout_required_min_weight_country_based' );
    function checkout_required_min_weight_country_based() {
        // Only on Cart or Checkout pages
        if( ! ( is_cart() || is_checkout() ) ) return;
    
        // Get the shipping country
        $country = WC()->session->get('customer')['shipping_country'];
        if( empty($country) ){
            $country = WC()->session->get('customer')['billing_country'];
        }
    
        // For Colombia and Argentina shipping countries
        if( in_array( $country, array('CO', 'AR') ) ){
    
            // HERE Set the minimum weight
            $minimum_weight = 20; // 20 kg
    
            // Get the Cart's content total weight
            $total_weight = WC()->cart->get_cart_contents_weight();
    
            // If total weight is lower than minimum, we avoid checkout and display an error notice
            if( $total_weight < $minimum_weight  ) {
                // Display an dynamic error notice
                wc_add_notice( sprintf(
                    '<strong>A Minimum Weight of %s is required before checking out.</strong>'
                    . '<br />Current cart weight: %s',
                    wc_format_weight($minimum_weight),
                    wc_format_weight($total_weight)
                ), 'error' );
            }
        }
    }
    

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

    When Colombia is the detected country (or the defined country) you will get something like:

    enter image description here


    The same code for all countries:

    add_action( 'woocommerce_check_cart_items', 'checkout_required_min_weight' );
    function checkout_required_min_weight() {
        // Only on Cart or Checkout pages
        if( ! ( is_cart() || is_checkout() ) ) return;
    
        // HERE Set the minimum weight
        $minimum_weight = 20; // 20 kg
    
        // Get the Cart's content total weight
        $total_weight = WC()->cart->get_cart_contents_weight();
    
        // If total weight is lower than minimum, we avoid checkout and display an error notice
        if( $total_weight < $minimum_weight  ) {
            // Display an dynamic error notice
            wc_add_notice( sprintf(
                '<strong>A Minimum Weight of %s is required before checking out.</strong>'
                . '<br />Current cart weight: %s',
                wc_format_weight($minimum_weight),
                wc_format_weight($total_weight)
            ), 'error' );
        }
    }
    

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

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

报告相同问题?

悬赏问题

  • ¥15 R语言Rstudio突然无法启动
  • ¥15 关于#matlab#的问题:提取2个图像的变量作为另外一个图像像元的移动量,计算新的位置创建新的图像并提取第二个图像的变量到新的图像
  • ¥15 改算法,照着压缩包里边,参考其他代码封装的格式 写到main函数里
  • ¥15 用windows做服务的同志有吗
  • ¥60 求一个简单的网页(标签-安全|关键词-上传)
  • ¥35 lstm时间序列共享单车预测,loss值优化,参数优化算法
  • ¥15 Python中的request,如何使用ssr节点,通过代理requests网页。本人在泰国,需要用大陆ip才能玩网页游戏,合法合规。
  • ¥100 为什么这个恒流源电路不能恒流?
  • ¥15 有偿求跨组件数据流路径图
  • ¥15 写一个方法checkPerson,入参实体类Person,出参布尔值