Horje
woocommerce product image zoom on hover disable Code Example
woocommerce product image zoom on hover disable
/* Disable zoom on Woocommerce Product Images */

// Append to your child theme's functions.php
function remove_image_zoom_support() {
    remove_theme_support( 'wc-product-gallery-zoom' );
}
add_action( 'wp', 'remove_image_zoom_support', 100 );
woocommerce disable zoom on product image
add_filter( 'woocommerce_single_product_zoom_enabled', '__return_false' );




Php

Related
php mysql created at Code Example php mysql created at Code Example
php check method of http request Code Example php check method of http request Code Example
smarty assign Code Example smarty assign Code Example
laravel run migration Code Example laravel run migration Code Example
php what type of variable is it Code Example php what type of variable is it Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
10