运送到的Woocommerce购物车/结账通知不是荷兰

时间:2015-06-03 09:12:09

标签: wordpress woocommerce wpml

对于我的客户,我正在使用WooCommerce开发网店。

当订单总重量超过30Kg和/或当发货地址不是荷兰时,用户需要联系网店的所有者了解运费。

对于第一个条件(订单超过30Kg),我在functions.php中创建了以下内容,以便在购物车和结帐页面显示通知消息:

add_action('wp_enqueue_scripts', 'enqueue_childtheme_scripts', 1000);

// Max weight check
add_action('woocommerce_check_cart_items','check_cart_weight');

function check_cart_weight(){
    global $woocommerce;
    $weight = $woocommerce->cart->cart_contents_weight;
    if( $weight > 30 && ICL_LANGUAGE_CODE=='en' ){
        wc_add_notice( sprintf( __( 'The total weight of your order is %sKg. Please <a href="http://www.link-to-webshop.nl/en/contact/">contact us</a> for shipping rates for orders above 30Kg.', 'woocommerce' ), $weight ) );
    }
    elseif( $weight > 30 && ICL_LANGUAGE_CODE=='nl' ){
        wc_add_notice( sprintf( __( 'Het totale gewicht van uw bestelling bedraagt %sKg. Voor de verzendkosten van bestellingen van boven de 30Kg dient u <a href="http://www.link-to-webshop.nl/contact/">contact</a> met ons op te nemen.', 'woocommerce' ), $weight ) );
    }
}

这就像魅力一样。但问题是,当用户选择任何其他国家/地区运送到荷兰时,我不知道如何在购物车和结帐页面上创建另一条通知消息。

有谁知道如何实现这个目标?

1 个答案:

答案 0 :(得分:0)