Aleš Sýkora / November 28, 2023 / 2 comments
Disable Woocommerce image zoom on hover in oxygen
1 min read / Oxygen Builder, Plugins, WordPress / Share on: Twitter, LinkedIn, Facebook
Post summary: Add this to custom snippets. Or put in custom funcionalities plugin. Dont worry, lightbox will be working. Then the magnyfing glass icon dissapears, the over effect is gone, but the lightbox works perfect :-).
Add this to custom snippets. Or put in custom funcionalities plugin. Dont worry, lightbox will be working.
function remove_image_zoom_support() {
remove_theme_support( 'wc-product-gallery-zoom' );
}
add_action( 'wp', 'remove_image_zoom_support', 100 );
Then the magnyfing glass icon dissapears, the over effect is gone, but the lightbox works perfect :-).
Fuel my passion for writing with a beer🍺
Your support not only makes me drunk but also greatly motivates me to continue creating content that helps. Cheers to more discoveries and shared success. 🍻
Cameron
Where do you add this in oxygen? Is it PHP or javascript? Can’t seem to get it to work – thank you!
Aleš Sýkora
I add this into Advanced Scripts plugin.