Skip to content document.addEventListener('DOMContentLoaded', function() {
// Listen for WooCommerce AJAX cart updates
jQuery(document.body).on('added_to_cart', function() {
jQuery('.added_to_cart.wc-forward').each(function() {
// Decode any HTML-escaped TranslatePress tags
var html = jQuery(this).html();
if (html.includes('<TRP-GETTEXT')) {
jQuery(this).html(
html
.replace(/</g, '<')
.replace(/>/g, '>')
);
}
});
});
});