It seems we can’t find what you’re looking for. Perhaps searching can help.
Scroll to Top
document.addEventListener('DOMContentLoaded', function() {
// Check if the page contains an h1 element with the title "Porcelain Tiles"
var pageTitle = document.querySelector('h1');
if (pageTitle && pageTitle.textContent.trim().toLowerCase() === 'porcelain tiles') {
// Create a style element and append it to the head of the document
var style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = `
.term-44 header.woocommerce-products-header:not(.active)::after {
content: "More..";
color: #000000;
cursor: pointer;
}`;
document.head.appendChild(style);
}
});