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...
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....