Skip to content

Instantly share code, notes, and snippets.

@xlplugins
Created April 25, 2024 11:24
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 xlplugins/6ac0625dd620a8361fc78f70b442fbd2 to your computer and use it in GitHub Desktop.
Save xlplugins/6ac0625dd620a8361fc78f70b442fbd2 to your computer and use it in GitHub Desktop.
open side cart on menu click
add_action( 'wp_footer', function () {
?>
<script>
(function ($) {
try {
$(document).on('click', '.elementor-menu-cart__toggle_button', function (e) {
e.preventDefault();
$('.elementor-menu-cart__main').hide()
$('body').trigger('fkcart_update_side_cart', [true]);
});
} catch (e) {
}
})(jQuery)
</script>
<?php
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment