运费是使用我的Woocommerce网站上的产品重量和尺寸计算的。但是,我的库存系统仅使用产品重量来计算运费。因此,从库存系统同步到网站的新产品通常没有尺寸。
经过几次测试后,我发现在网站上为产品添加.001的长度,宽度和高度可以产生最准确的运费。
我需要编写一个函数,如果它们在创建时为空,则将产品尺寸设置为.001。
以下是我的尝试:
function add_default_dimension_if_empty( $meta_id, $post_id, $meta_key, $meta_value ) {
if ( $meta_key == '_edit_lock' ) {
if ( get_post_type( $post_id ) == 'product' ) {
//get product
$product = wc_get_product( $post_id );
$newDim = .001;
if($product->has_dimensions()){
if(empty( $product->get_length() )){
update_post_meta($post_id, '_length', $newDim);
}
if(empty( $product->get_width() )){
update_post_meta($post_id, '_width', $newDim);
}
if(empty( $product->get_height() )){
update_post_meta($post_id, '_height', $newDim);
}
}
}
}
}
add_action( 'added_post_meta', 'add_default_dimension_if_empty', 10, 4 );
add_action( 'updated_post_meta', 'add_default_dimension_if_empty', 10, 4 );
我使用了this文章中的结构,但它似乎不起作用。有什么想法吗?
答案 0 :(得分:0)
您的代码很好,只需更改一个检查维度是否存在的条件。
将if($product->has_dimensions())
行替换为以下
$dimensions = $product->get_dimensions();
if(! empty( $dimensions ))
这对你有用。