Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save AnanthFlycart/44cf9ee0feab3cc11a7d18a831224476 to your computer and use it in GitHub Desktop.
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)
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