Skip to content

Instantly share code, notes, and snippets.

@mgibbs189
Created March 6, 2018 13:27
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mgibbs189/69c0c9d701a2795b517f7dbac06af6c1 to your computer and use it in GitHub Desktop.
Save mgibbs189/69c0c9d701a2795b517f7dbac06af6c1 to your computer and use it in GitHub Desktop.
Pre-fill the search box if not filled
<?php
// Add to your (child) theme's functions.php
add_filter( 'facetwp_render_params', function( $params ) {
foreach ( $params['facets'] as $key => $facet ) {
if ( 'keywords' == $facet['facet_name'] ) { // change "keywords" to your actual facet name
if ( empty( $facet['selected_values'] ) ) {
$params['facets'][ $key ]['selected_values'] = 'circ';
}
}
}
return $params;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment