Skip to content

Instantly share code, notes, and snippets.

@wplit
Created April 17, 2025 05:43
Show Gist options
  • Save wplit/e228f4cf6b7269670e6effbb456889c9 to your computer and use it in GitHub Desktop.
Save wplit/e228f4cf6b7269670e6effbb456889c9 to your computer and use it in GitHub Desktop.
prevent fluent support outputting all support portal JS on the front end
add_action('wp_enqueue_scripts', function() {
// Only allow on /support page for logged-in users
if (!is_user_logged_in() || !is_page('support')) {
wp_dequeue_script('fluent-support/customer-portal');
}
}, 999);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment