document.addEventListener("DOMContentLoaded", function() { // Wait for the DOM to be fully loaded var countElements = document.querySelectorAll('.woocommerce-loop-category__title .count'); if (countElements.length > 0) { // Loop through all the elements with the class and update each one countElements.forEach(function(countElement) { // Extract the count from the text content var count = countElement.textContent.replace(/\D/g, ''); // Update the text content to include " products" countElement.textContent = count + " products"; }); } });