This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| add_filter( 'search-filter/frontend/enqueue_styles', 'search_filter_remove_ugc_styles' ); | |
| /** | |
| * Remove UGC styles (Styles Presets CSS file) | |
| */ | |
| function search_filter_remove_ugc_styles( $styles ) { | |
| $position = array_search( 'search-filter-ugc-styles', $styles, true ); |
OlderNewer