Created
July 12, 2024 09:23
-
-
Save AnanthFlycart/44cf9ee0feab3cc11a7d18a831224476 to your computer and use it in GitHub Desktop.
UpsellWP Side Cart: Show slider after product adding to cart (not through AJAX)
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
add_action('wp_footer', function () { | |
if (did_action('woocommerce_add_to_cart') >= 1) { ?> | |
<script> | |
jQuery(document).ready(function () { | |
jQuery('.uwpmc-widget-container').trigger('click'); | |
}); | |
</script> | |
<?php | |
} | |
}, 100); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment