SEARCH PORTAL BELOW
Code Snippets
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
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, 21 Oct, 2024 at 4:42 AM
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
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
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
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
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
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