Code Snippets

Optimize WooCommerce Scripts
 Add this to your active theme's funtions.php file. /** * Optimize WooCommerce Scripts * Remove WooCommerce Generator tag, styles, and scripts fro...
Mon, 5 Nov, 2018 at 3:10 PM
Display Product Anywhere
 The shortcode below can be uses in page and post editor.  Change the product ID of the product you want to show. [product_page id="PRODUCT_ID"...
Mon, 5 Nov, 2018 at 3:27 PM
Change Product Column Amount
 Add below in your active themes's functions.php file   add_action ('init', 'change_columns'); function change_columns() { add_fil...
Mon, 5 Nov, 2018 at 3:28 PM
Variation Out of Stock Issue
 Change first 10 value to number you need to display.   function custom_wc_ajax_variation_threshold( $qty, $product ) { return 10; } add_filter( ...
Wed, 11 Nov, 2015 at 1:41 PM
Auto Complete Orders
Add this in your active theme's funtions.php file   /** * Auto Complete all WooCommerce orders. */ add_action( 'woocommerce_thankyou', '...
Mon, 5 Nov, 2018 at 3:30 PM
Change Woo Wording
 Add to functions.php file of active theme // change shipping text to "Draw Fee" add_filter('gettext', 'translate_reply'...
Tue, 24 Nov, 2015 at 11:08 AM
Fix Image Gallery in 3.0
https://createandcode.com/broken-photo-gallery-and-lightbox-after-woocommerce-3-0-upgrade/ add_action( 'after_setup_theme', 'yourtheme_setup...
Wed, 3 May, 2017 at 12:05 PM
Speed Up WC Fragments
Add to your active theme's functions.phph file. /** Disable Ajax Call from WooCommerce */ add_action( 'wp_enqueue_scripts', 'dequeue_woo...
Mon, 5 Nov, 2018 at 3:37 PM