Skip to content

Instantly share code, notes, and snippets.

@MrVibe
Created March 11, 2021 23:48
Show Gist options
  • Save MrVibe/73e422e32e003aa29c1fe0f0ea07907d to your computer and use it in GitHub Desktop.
Save MrVibe/73e422e32e003aa29c1fe0f0ea07907d to your computer and use it in GitHub Desktop.
Appointments Cart click not redirecting to cart. Paste in WP Admin - WPLMS - Footer - Analytics code.
<script>
document.addEventListener('appointmentSlotAdded',function(){
var el = document.querySelector('.vbpcart'),
elClone = el.cloneNode(true);
el.parentNode.replaceChild(elClone, el);
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment