Created
September 13, 2019 07:30
-
-
Save psahalot/3118513934fbc433daa035572f2ba094 to your computer and use it in GitHub Desktop.
Display Modal Box on all Pages except one.
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
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