by Paul Drecksler | Jul 3, 2024 | Updates
I was looking for a keyboard shortcut within Excel that allowed me to quickly Filter a column by the contents of a cell. Unfortunately it didn't exist as a native Excel feature, but I was able to build a VBA macro that could accomplish that task, as well as a second...
by Paul Drecksler | Jun 19, 2024 | Updates
This post is going to outline my solution to a problem that I could not find a great solution for after perusing countless Shopify Community posts, Reddit posts, and other web forums. Nor could I find an app that did exactly what I wanted. So today I'm going to share...
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');...