Hide out of stock products
Parameters
- hide – boolean variable, if set to true out of stock products will be hidden
Usage
<?php
function my_set_hide_out_of_stock ( $hide ) {
//your code here
return $hide;
}
add_filter( 'berocket_aapf_hide_out_of_stock_items', 'my_set_hide_out_of_stock' );
?>