在我的WooCommerce网站上,我这里有一些代码可以使用但不太好。
对各国的计算工作正常,但是当我添加类别时价格不正确。
这是我的代码:
add_filter( 'woocommerce_get_discounted_price', 'calculate_discounted_price', 10, 2 );
add_filter( 'woocommerce_cart_item_subtotal', 'display_discounted_price', 10, 2 );
function calculate_discounted_price( $price, $values ) {
global $woocommerce, $product;
$countryArray = array( 'AL', 'AD', 'AT', 'BY', 'BE', 'BA', 'BG', 'HR', 'CY', 'CZ', 'DK', 'EE', 'FO', 'FI', 'FR', 'DE', 'GI', 'GR', 'HU', 'IS', 'IE', 'IM', 'IT', 'RS', 'LV', 'LI', 'LT', 'LU', 'MK', 'MT', 'MD', 'MC', 'ME', 'NL', 'NO', 'PL', 'PT', 'RO', 'RU', 'SM', 'RS', 'SK', 'SI', 'ES', 'SE', 'CH', 'UA', 'VA', 'RS' );
$catArray = array('handbags','kids','hats');
if( $woocommerce->customer->get_shipping_country() == 'GB' ) {
foreach ( $woocommerce->cart->cart_contents as $product ) :
if ( has_term( $catArray, 'product_cat', $product['product_id'] ) ) {
$price += 4.50;
} else {
$price += 8.50;
}
endforeach;
} elseif( in_array($woocommerce->customer->get_shipping_country(), $countryArray) ) {
foreach ( $woocommerce->cart->cart_contents as $product ) :
if ( has_term( $catArray, 'product_cat', $product['product_id'] ) ) {
$price += 4.50;
} else {
$price += 12.50;
}
endforeach;
} else {
foreach ( $woocommerce->cart->cart_contents as $product ) :
if ( has_term( $catArray, 'product_cat', $product['product_id'] ) ) {
$price += 8.50;
} else {
$price += 18.50;
}
endforeach;
}
return $price;
}
function display_discounted_price( $values, $item ) {
return wc_price( $item[ 'line_total' ] ).'<br>incl. shipping';
}
当我删除所有foreach语句并仅保留国家条件时,它工作正常,foreach循环以某种方式导致问题。
对此有所帮助,非常感谢。
感谢。
答案 0 :(得分:1)
您不需要购物车foreach循环来获取产品ID,如下所示。 我还没有解决显示价格奇怪的问题,因为它似乎来自产品类别条件。我必须进一步测试,但是这个未完成的代码将帮助您理解第一个钩子函数中的参数:
add_filter( 'woocommerce_get_discounted_price', 'calculate_discounted_price', 10, 3 );
function calculate_discounted_price( $price, $cart_item, $cart_object ) {
$country_arr = array( 'AL', 'AD', 'AT', 'BY', 'BE', 'BA', 'BG', 'HR', 'CY', 'CZ', 'DK', 'EE', 'FO', 'FI', 'FR', 'DE', 'GI', 'GR', 'HU', 'IS', 'IE', 'IM', 'IT', 'RS', 'LV', 'LI', 'LT', 'LU', 'MK', 'MT', 'MD', 'MC', 'ME', 'NL', 'NO', 'PL', 'PT', 'RO', 'RU', 'SM', 'RS', 'SK', 'SI', 'ES', 'SE', 'CH', 'UA', 'VA', 'RS' );
$cats_arr = array('handbags','kids','hats');
// ONLY for logged users (I think)
$user_ship_country = WC()->customer->get_shipping_country();
$product_id = $cart_item['product_id'];
if( $user_ship_country == 'GB' ) {
if ( has_term( $cats_arr, 'product_cat', $product_id ) )
$price += 4.50;
else
$price += 8.50;
} elseif( in_array($user_ship_country, $country_arr) ) {
if ( has_term( $cats_arr, 'product_cat', $product_id ) )
$price += 4.50;
else
$price += 12.50;
} else {
if ( has_term( $cats_arr, 'product_cat', $product_id ) )
$price += 8.50;
else
$price += 18.50;
}
return $price;
}
add_filter( 'woocommerce_cart_item_subtotal', 'display_discounted_price', 10, 2 );
function display_discounted_price( $values, $item ) {
return wc_price( $item[ 'line_total' ] ).'<br>incl. shipping';
}
此外 WC()->customer->get_shipping_country();
仅适用于log gin客户(我认为)......
希望这会对你有所帮助。
但是为了运送额外费用,我认为您没有使用正确的挂钩......