Created
March 5, 2026 21:30
-
-
Save tripflex/1492b2055bdf4e8a37a2c75375721ced to your computer and use it in GitHub Desktop.
Fix Complianz Privacy Suite blocking WP Job Manager Search and Filtering from Working
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( 'cmplz_whitelisted_script_tags', 'wpjmsf_cmplz_whitelist_script', 9999 ); | |
| function wpjmsf_cmplz_whitelist_script( $whitelisted_script_tags ) { | |
| $whitelisted_script_tags[] = 'wpjm-search-filtering'; | |
| $whitelisted_script_tags[] = 'wpjmsf_'; | |
| return $whitelisted_script_tags; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment