by Paul Drecksler | Oct 5, 2022 | Updates
I was trying to combine using a discount code like: store.com/discount/fall2022 with a collections code link like: store.com/collections/sweaters Here's how: store.com/discount/fall2022?redirect=/collections/sweaters So basically use the discount link and then add...
by Paul Drecksler | Aug 9, 2022 | Updates
This solution only works if you're using WordPress + Divi + Cloudflare combo. If not, then the solution below won't affect you. Sorry! I was running into the issue of the Divi Visual Builder not loading on a client site. When I clicked “Enable Visual...
by Paul Drecksler | Apr 7, 2022 | Updates
“Divi crops my featured images weird.” “Divi cuts off my featured images in the thumbnails.” “How do I change the aspect ratio of my featured images in Divi?” Divi was built with three aspect ratios in mind – 16:9, 4:3, and 3:4....
by Paul Drecksler | Mar 16, 2022 | Updates
Here's some HTML code that'll lazy load YouTube videos. There are better solutions for doing this site-wide, but this is good for just one or two videos. Code courtesy of CSS-Tricks.com <iframe width=”560″ height=”315″...
by Paul Drecksler | Dec 26, 2021 | Updates
Add this code to your product template and it will only display on a specific collection. Courtesy of this Stack Overflow post. {% for c in product.collections %} {% if c.handle == “collection-handle” %} Input custom text here. HTML is fine, as are other...