No content to show
User Activity
08-17-2023
Here's a quick solution using simple javascript. It worked for me.const allEmptyParagraphs = [...document.querySelectorAll('.product-info__description-long p')]
.filter(el => el.innerHTML===' ');
allEmptyParagraphs.forEach(el => el.remove());
Hi, does Shopify have a solution to this yet? I'm looking to offer free shipping for subscription products but also display the other paid shipping methods, but Shopify is only displaying the free shipping.