by Paul Drecksler | Feb 10, 2024 | Updates
I'm currently using MailChimp for my e-mail newsletter. The subscribe form on my WordPress website is powered by Gravity Forms (as opposed to using MailChimp's forms). Gravity Forms + MailChimp Add-On = feeds all GF submissions into MailChimp. Goal: Auto-tag my...
by Paul Drecksler | Apr 26, 2023 | Updates
Add this code to your functions.php file: add_filter(‘woocommerce_get_availability_text', ‘themeprefix_change_soldout', 10, 2 ); /** * Change Sold Out Text to Something Else */ function themeprefix_change_soldout ( $text, $product) { if (...
by Paul Drecksler | Apr 21, 2023 | Updates
To the header: <script> jQuery(function($){ $(‘.et_pb_toggle_title').click(function(){ var $toggle = $(this).closest(‘.et_pb_toggle'); if (!$toggle.hasClass(‘et_pb_accordion_toggling')) { var $accordion = $toggle.closest(‘.et_pb_accordion');...
by Paul Drecksler | Oct 18, 2022 | Updates
Section Min Height: 100vh https://www.peeayecreative.com/how-to-make-a-full-height-divi-hero-section/
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...