Skip to content

Instantly share code, notes, and snippets.

@PavloBorysenko
Created August 23, 2023 10:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PavloBorysenko/cc7dcb25116b2af47208f55a1a462a26 to your computer and use it in GitHub Desktop.
Save PavloBorysenko/cc7dcb25116b2af47208f55a1a462a26 to your computer and use it in GitHub Desktop.
Example about how to show always ‘In Stock products only’ in the search results:
add_filter('woof_get_request_data', 'my_woof_get_request_data');
function my_woof_get_request_data($data){
$data['stock']='instock';
return $data;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment