Skip to content

Instantly share code, notes, and snippets.

@dexit
Forked from hmowais/functions.php
Created July 25, 2025 10:07
Show Gist options
  • Save dexit/5db8fdbcd7a28efed0b8232b75da45df to your computer and use it in GitHub Desktop.
Save dexit/5db8fdbcd7a28efed0b8232b75da45df 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