Skip to content

Instantly share code, notes, and snippets.

@mgibbs189
Created May 4, 2017 23: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 mgibbs189/45d1f582d8b45916337cb56cf8ea9083 to your computer and use it in GitHub Desktop.
Save mgibbs189/45d1f582d8b45916337cb56cf8ea9083 to your computer and use it in GitHub Desktop.
FacetWP - change fSelect search placeholder text
<?php
add_filter( 'facetwp_render_output', function( $output ) {
$output['settings']['YOUR_FACET_NAME']['searchText'] = 'Hello world';
return $output;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment