Skip to content

Instantly share code, notes, and snippets.

@tripflex
Created March 5, 2026 21:30
Show Gist options
  • Select an option

  • Save tripflex/1492b2055bdf4e8a37a2c75375721ced to your computer and use it in GitHub Desktop.

Select an option

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
<?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