Skip to content

Instantly share code, notes, and snippets.

@hmowais
Created January 30, 2025 21:18
Show Gist options
  • Save hmowais/675c1accaa3b3488d2748af530693916 to your computer and use it in GitHub Desktop.
Save hmowais/675c1accaa3b3488d2748af530693916 to your computer and use it in GitHub Desktop.
Close Elementor Popup and Scroll to Specific Section on button click
<?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