SaleIQ chat bug fix (Mihai)

(function() { let originalTitle = document.title; Object.defineProperty(document, ‘title’, { get: function() { // Remove ‘>’ from the title when accessed return originalTitle.replace(/>/g, ”); } }); })();Continue reading

Woocommecre Category Fix

jQuery(document).ready(function( $ ){ var checkCategory = jQuery(“body.archive.tax-product_cat .product-category”); if(checkCategory.length > 0){ jQuery(“body”).addClass(“only-products-cat”); } });Continue reading