August 2022

Shake Button On Scroll using Wow.js for WordPress

2022-08-16T12:08:32-04:00Categories: Website Tips|Tags: |

Follow the steps to implement wow.js on your wordpress theme. The events happening are when element enters viewport add a class, when it exits viewport remove class. The javascript to add on footer const shakebtn = document.querySelector('.shakebtn') const add_class_on_scroll = () => shakebtn.classList.add("testy","wow") const remove_class_on_scroll = () => shakebtn.classList.remove("testy","wow") const observer = new window.IntersectionObserver(([entry]) => [...]

February 2022

Create A Free Popup On Shopify

2022-02-09T02:26:50-05:00Categories: Website Tips|Tags: |

This article will cover how you can create a free popup on your Shopify website. You can add a Mailchimp form or any other html email marketing code script / custom html to a popup that can be triggered with a click. Technical Level: Medium You'll need to know some code or at least an [...]

Go to Top