Created
January 30, 2025 21:18
-
-
Save hmowais/675c1accaa3b3488d2748af530693916 to your computer and use it in GitHub Desktop.
Close Elementor Popup and Scroll to Specific Section on button click
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 | |
function cs_footer() { ?> | |
<script> | |
jQuery(function($){ | |
$(document).on('click','.elementor-location-popup a', function(event){ | |
elementorProFrontend.modules.popup.closePopup( {}, event); | |
}); | |
}); | |
</script> | |
<?php | |
} | |
add_action('wp_footer', 'cs_footer'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment