Skip to content

Instantly share code, notes, and snippets.

@yousufansa
Created November 12, 2019 12:29
Show Gist options
  • Save yousufansa/30864ce960ef97c8b1fae7da3305c31e to your computer and use it in GitHub Desktop.
Save yousufansa/30864ce960ef97c8b1fae7da3305c31e to your computer and use it in GitHub Desktop.
Electro - Exclude Out of Stock Products From Live Search
if ( !function_exists( 'electro_child_wc_live_search_query_custom_args' ) ) {
function electro_child_wc_live_search_query_custom_args( $args ) {
$args['stock_status'] = array( 'instock', 'onbackorder' );
return $args;
}
}
add_filter( 'electro_wc_live_search_query_args', 'electro_child_wc_live_search_query_custom_args' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment