How to enable products and other post types in Divi Search Module
WooCommerce Tips
Add a second password field to the checkout page in WooCommerce.
How to enable products and other post types in Divi Search Module
Increase cart item prices based on payment method in WooCommerce.
How to enable products and other post types in Divi Search Module
Change COD default order status to “On Hold” instead of “Processing” in Woocommerce
How to enable products and other post types in Divi Search Module
Disable the WooCommerce automatic image regeneration in the background.
How to enable products and other post types in Divi Search Module
Make “Create an account” to be default Checked on WooCommerce checkout page.
How to enable products and other post types in Divi Search Module
Remove related products output on WooCommerce product pages.
How to enable products and other post types in Divi Search Module
Adding text before order the information text “Thank you. Your order has been received.” in WooCommerce
How to enable products and other post types in Divi Search Module
Add the Add to Cart buttons on WooCommerce shop pages.
How to enable products and other post types in Divi Search Module
Remove the product image rollover on WooCommerce product pages.
How to enable products and other post types in Divi Search Module
Add product SKUs to default WP search
How to enable products and other post types in Divi Search Module
Enable products and other post types in Divi Search Module
How to enable products and other post types in Divi Search Module
Hide the product weight and dimension on the WooCommerce single product page.
Hide the product weight and dimension on the WooCommerce single product page.
Add logo to WordPress admin login page
These are mostly for WooCommerce with a few for Divi and WordPress in general.
Replace WooCommerce category images with plain text.
Sometimes it's a pain to make images for all your WooCommerce product categories. Otherwise, you get the ugly default image. For example, see the image below where each category displays text only with a blue background.Add the CSS below to hide...
Make the default Divi search box search WooCommerce products only
If you have a Divi/WooCommerce site and you don't have any posts, this is perfect for you. The default Divi search will now search only your products. You can add this to the Divi theme options Integration tab in the head. Or add to a Code module...
How to add display Woocommerce product category on the order edit page
Add the following PHP code to your child theme functions.php file. [php] [/php]Add the following PHP code to your child theme functions.php file.[php] [/php]
Enlarge product image on rollover for Divi Shop module
Add the following CSS code to the Divi theme options area or your child theme style.css file. [css] /* enlarge shop module product images on rollover BEGIN */ .et_shop_image img {transition: transform .2s;} .et_shop_image img:hover {transform:...
Change the default U.S. state in the dropdown on WooCommerce checkout page
Add the following PHP code to your child theme functions.php file. [php] //default checkout US state dropdown blank instead of the default site state making taxes sometimes show up add_filter( 'default_checkout_billing_state',...
How to Change In Stock text in WooCommerce
Add the following PHP code to your child theme functions.php file. [php] /* Change In Stock text in WooCommerce */ add_filter( 'woocommerce_get_availability', 'wcs_custom_get_availability', 1, 2); function wcs_custom_get_availability(...