Skip to content

Instantly share code, notes, and snippets.

@Deviant96
Created October 18, 2023 15:49
Show Gist options
  • Save Deviant96/776938a0e9828ba68d74d561b9ac716a to your computer and use it in GitHub Desktop.
Save Deviant96/776938a0e9828ba68d74d561b9ac716a to your computer and use it in GitHub Desktop.
Only published and visible products on FIBOSearch autocomplete searchbar
add_filter( 'dgwt/wcas/search_query/args', function ( $args ) {
$args = array(
'post_status' => 'publish',
'meta_query' => array(
array(
'key' => '_visibility',
'value' => array('visible'),
'compare' => 'IN'
)
)
);
return $args;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment