To remove all WordPress default image sizes via coding, first, install and activate the Code Snippets plugin. PHP Snippet: Disable Zoom, Product Gallery Slider and Lightbox @ WooCommerce Single Product Page. If you only want to hide magnifying … .woocommerce-product-gallery__trigger, .zoomImg{display:none !important} You can place this code in Theme options –> … remove_theme_support ( 'wc-product-gallery-zoom' ); In WooCommerce 3.+ there's a cool new feature: the zoom! remove_theme_support ('wc-product-gallery-zoom'); The function of this code will remove the “image zoom” feature on the single product page. This is the code I came across to disable the zoom! ShopIsle theme uses WooCommerce. I do not need the lightbox. Disable WooCommerce Lightbox Names in the code … Step 2: Adjust your product image zoom settings. This feature was added in WooCommerce 3.+ versions. The image appears close-up when you hover over the image in the quick view lightbox. I don’t want image zoom though. Awesome Image Zoom For Images in Posts/Pages and For WooCommerce Products Disable Woocommerce image zoom on hover in oxygen. All you need to do is to go to Appearance -> Editor and put the following code at the bottom of your functions.php file. * @see https://businessbloomer.com/woocommerce-disable-zoom-gallery-slider-lightbox-single-product/ */ add_action ( 'after_setup_theme', function {remove_theme_support ( 'wc-product-gallery-zoom… Select Lens Zoomto display the zoom effect in a lens which will be displayed inside the original product image. I am currently trying to remove the product zoom on all product pages. As of Dec 2018 WC v. 3.5.3, product zoom can be disabled by going to Appearance> WooCommerce> Single> Uncheck “Product Gallery Zoom.” I sell downloadable digital images, and I added the following CSS to prevent lightbox from working on all pages. Go to: WordPress Admin > Plugins > Add New and Upload Plugin with the file you downloaded with Choose File. disable woocommerce product lightbox tutorial on YouTube. When you hover a product image when on the single product page, you can zoom on the products images; I love this feature, however some people would like to remove it. To do so, simply paste this snippet in your functions.php file, within the theme folder: Loading... Woocommerce one of the most used e-commerce plugin for WordPress. Product Image Zoom Plugin for WooCommerceThis plugin will help your customers view your product features in great detail. Along with image zoom, you will also… With your Beaver Builder child theme active, go to Appearance > Themer Editor in the WordPress dashboard. Just the ability to either click on the magnifying icon or the entire image to get the lightbox to come up. add_action ( ‘template_redirect’, function () {. Add this to custom snippets. This snippet was last updated on July 11, 2017. Instead, WooCommerce's feature. .woocommerce-product-gallery__image { pointer-events: none; } All CSS snippets should be added via a child theme's style.css file or using the built-in Custom CSS panel. In order to disable product Image Zoom, simply paste this snippet into your functions.php file, within the theme folder: remove_theme_support( 'wc-product-gallery-zoom' ); This one line magic code will disable image zoom feature on the single product page in WooCommerce. In WooCommerce product pages, there is image Zoom in effect. In your child theme’s functions.php paste this code: // disable the magnification zoom in product images. I thought adding this line of code in my functions.php for the child theme would do the trick. How to disable zooming on product images? Disable the WooCommerce product image zoom effect In case you want to get rid of the lousy WooCommerce product image zoom effect then check out the simple method that I used. Lightbox and product images gallery. To disable zoom in Shopify, it is possible to do it from your admin page. If the image in your WooCommerce Quick View Pro lightbox is appearing too big when you open it, then it normally means that the image zoom option is active and your cursor is already over the image when you open the lightbox.. Click the Add New button and you will see an editor where you can add custom codes. Along with image zoom, you will also… But, it may not be needed for everyone. The product image gallery starts of with the featured image. To do this, first name your snippet. ( 15 seconds) Step 3: Choose a resulting action from the other app. Once you have WooThumbs installed on your WordPress site, head over to WooCommerce > WooThumbs > Zoom from the admin panel. An image will zoom on mouse hover by the user. How WooCommerce + Zoom Integrations Work. WooCommerce has a nice built in effect for zooming in on product images, but sometimes you don't really want this effect. Zooming on Product Image – On the product page, the zoom only works if I first click on the image. I do understand that there is an option to disable the lightbox in woocommerce settings but even so a user is still able to click on the image only to be redirected to the larger version of the image. Thus, this is not a theme feature. Then the magnyfing glass icon dissapears, the over effect is gone, but the lightbox works perfect :-). Example product image without magnyfing glass after adding function. Hide Magnifying glass icon (zoom icon) in Woocommerce. WP Image Zoom is a free plugin. If you want to disable Zoom, Lightbox, and Product gallery slider, then this code snippet will work for you. By default images displayed on WooCommerce product pages have a zoom effect. Featured Image Zoom Plugin. Install Now and Activate the extension. From WooCommerce 4.4 there’s an important product image update (latest version of WooCommerce is 4.9.2 as of Febuary – 2021), if you’re embedding the product in any post or pages with WooCommerce shortcodes or WooCommerce blocks, now it will load the WooCommerce Thumbnail instead of the full-sized product image. Under the Customize theme area of your page, go to the Product Page section. Alternatively use the... Open the functions.php file of the child theme … Or put in custom funcionalities plugin. The following are the steps you should take to remove zoom effect on WooCommerce product : Log in to your WooCommerce site and access the theme editor under Appearance menu > Theme Editor. 1. Here’s the full solution he posted, Today I had a client ask to disable Woocommerce’s “zoom” feature on product images. In Zoom Type for Desktop option, select Window Zoom to display the zoom effect in a separate window which will be displayed outside the original product image. Here’s how to do it without a plugin – maybe this will save someone here sometime. Dont worry, lightbox will be working. This plugin will help your customers view your product features in great detail. I tried using this code, which has been confirmed by … Step #2 Find the setting for Product Image Zoom on Hover and click the checkbox so that it’s marked like so: Step #3 After that, go to Settings. there should be a disable box for zoom, gallery and lightbox. It will add a shortcode to display a zoomable featured image to a … Basically this plug-in allows you to load your own code as a plug-in without making any changes to core files in WooCommerce. Uncheck the Enable image zoom feature checkbox. Go to the WooCommerce section of your WordPress installation’s admin menu and click the link that says Remove Features. Installation Download the .zip file from your WooCommerce account. If you notice carefully, there are arrows to move to the next image of the gallery (if you have added images to product gallery). 2. These are split into four categories: General zoom settings. WP Image Zoom. In case you don’t know, WooCommerce Lightbox is a product feature that lets you open the image gallery with just a click. Woocommerce recently updated with new feature called Zoom effect on product image in single product page. function remove_image_zoom_support() { remove_theme_support( 'wc-product-gallery-zoom' ); } add_action( 'wp', 'remove_image_zoom_support', 100 ); and add_filter( ‘woocommerce_single_product_zoom_options’, ‘custom_single_product_zoom_options’, 10, 3 ); function custom_single_product_zoom_options( $zoom_options ) { // Disable zoom magnify: … I'm trying to get rid of the function where users can hover over the main product image and zoom into the product. Remove all default image sizes. Then a checkbox for turn off all effects making the single product image non clickable. WooCommerce -> Settings -> Display. How to remove Zoom hover effect. Open functions.php file of the child theme and add following code: add_action ( 'after_setup_theme', 'bc_remove_magnifier', 100 ); function bc_remove_magnifier () { remove_theme_support ( 'wc-product-gallery-zoom' ); } remove_theme_support ( 'wc … ( 30 seconds) Step 2: Pick one of the apps as a trigger, which will kick off your automation. To do so, simply paste this snippet in your functions.php… To remove it, Create a child theme. When you hover a product image when on the single product page, you can zoom on the products images; I love this feature, however some people would like to remove it. If you click on it, it will pop up a window with the image. By default, image zoom is on products in my WooCommerce Shop. I use Elementor page builder in my projects a lot, and by default the WooCommerce single product page gets the image zoom effect for product image. Please check the screenshot below, Zooming on mouseover. WooCommerce has exciting features like image zoom effect. Outside and follow zoom settings. Step 1: Authenticate WooCommerce + Zoom. remove_theme_support ( ‘wc-product-gallery-zoom’ ); I have two problems with WooCommerce(3.1.1) product images and Specular(2.5.0) running on WordPress 4.8.1. You can easily disable this zoom effect using a few lines of code. As one might have a good enough image as it is without the need for any extra effects going on with the single product image. add_action ( 'wp', 'bbloomer_remove_zoom_lightbox_theme_support', 99 ); function bbloomer_remove_zoom_lightbox_theme_support () {. In Zoom Type for Mobile Devices opt… In WooCommerce 3.+ there’s a cool new feature: the zoom! When you hover a product image when on the single product page, you can zoom on the products images; I love this feature, however some people would like to remove it. To do so, simply paste this snippet in your functions.php file, within the theme folder: From here, you can customise your image zoom settings. Snippets: Disable Image Click on WooCommerce Products. And so on, the user can see all images available for the product. This should disable zoom in Shopify and set the product image size. To disable the Zoom, Lightbox and Gallery slider effect on Woocommerce Products, add the below code snippet to the functions.php file of the child theme -. PHP Snippet: Removes Zoom Effect. ( 15 seconds) Step 4: Select the data you want to send from one app to the other. It’s a simple three step process after you’ve downloaded and installed our plugin to your WooCommerce site: Go to the WooCommerce section of your WordPress installation’s admin menu and click the link that says “Remove Features.” Find the setting for “Product Image Zoom” and click the checkbox so that it’s marked like so: Press the button. Today we take a look at how to disable the new Product Image Gallery features introduced in WooCommerce 3.0 on a per product basis. WooCommerce 3.0 was released last week and brought with it a ton of little refinements and improvements to everyone’s favourite WordPress eCommerce plugin. He discuss about disabling Woocommerce “zoom” feature on product images. Setup and Configuration Enable / Disable Professor Cloud to Enable and then hit save, Image Zoom will now be working for […]