我们可以隐藏价格为 0 或没有价格的 woocommerce 产品吗?
Can we hide the woocommerce product with price 0 or no price?
大家:
我想问一下,是否有办法(自定义编码或插件)隐藏没有价格或价格为 0 的产品?
//Put this code in functions.php file
add_action( 'woocommerce_product_query', 'themelocation_product_query' );
function themelocation_product_query( $q ){
$meta_query = $q->get( 'meta_query' );
$meta_query[] = array(
'key' => '_price',
'value' => 0,
'compare' => '>'
);
$q->set( 'meta_query', $meta_query );
}
大家: 我想问一下,是否有办法(自定义编码或插件)隐藏没有价格或价格为 0 的产品?
//Put this code in functions.php file
add_action( 'woocommerce_product_query', 'themelocation_product_query' );
function themelocation_product_query( $q ){
$meta_query = $q->get( 'meta_query' );
$meta_query[] = array(
'key' => '_price',
'value' => 0,
'compare' => '>'
);
$q->set( 'meta_query', $meta_query );
}