Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save xlplugins/725f24814260870725d0e2ba45fd9600 to your computer and use it in GitHub Desktop.
Save xlplugins/725f24814260870725d0e2ba45fd9600 to your computer and use it in GitHub Desktop.
Update WCPT Cart when funnelkit cart item updated
add_action( 'wp_footer', function () {
?>
<script>
window.addEventListener('load', function () {
jQuery('body').on('wc_fragment_refresh', function () {
try {
wcpt_cart()
}catch (e) {
}
})
});
</script>
<?php
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment