Knowledge Base Article
You will need to be logged into the system as an administrator with writes to customize the theme of your WordPress website. Once you are logged in do the following steps:
// Disable the Zoom effect within WooCoommerce product pages
add_action('after_setup_theme', 'remove_wc_gallery_zoom', 100);
 function remove_wc_gallery_zoom() {
     remove_theme_support('wc-product-gallery-zoom');
}
Choose from the Knowledge Base category to view the available articles.