mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
8 lines
260 B
Text
8 lines
260 B
Text
add_filter( 'pre_option_woocommerce_hide_out_of_stock_items', 'wc_hide_out_of_stock_exception_category' );
|
|
|
|
function wc_hide_out_of_stock_exception_category( $hide ) {
|
|
if ( is_product_category( 'tables' ) ) {
|
|
$hide = 'no';
|
|
}
|
|
return $hide;
|
|
}
|