Skip to content

Instantly share code, notes, and snippets.

@psahalot
Created September 13, 2019 07:30
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 psahalot/3118513934fbc433daa035572f2ba094 to your computer and use it in GitHub Desktop.
Save psahalot/3118513934fbc433daa035572f2ba094 to your computer and use it in GitHub Desktop.
Display Modal Box on all Pages except one.
function beaveraddons_popup_box() {
if (!is_page('your-page-slug')) {
echo do_shortcode('[fl_builder_insert_layout slug="site-wide-popup"]');
}
}
add_action('fl_after_content', 'beaveraddons_popup_box');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment