I want to remove magento default jquery.elevateZoom-3.0.8.min.js zoom ectension on the product view page.
i tried removing the commenting js file from catalog.xml file but not working.
Please help me Thanks In Advance
Open
app/design/frontend/base/default/template/catalog/product/view/media.phtml Comment below code
<!-- <script type="text/javascript"> //<![CDATA[ Event.observe(window, 'load', function() { product_zoom = new Product.Zoom('image', 'track', 'handle', 'zoom_in', 'zoom_out', 'track_hint'); }); //]]> </script>--> I managed to remove elevatezoom by inserting the following in my local.xml:
<catalog_product_view translate="label"> <reference name="head"> <action method="removeItem"><type>skin_js</type><name>js/lib/elevatezoom/jquery.elevateZoom-3.0.8.min.js</name></action> </reference> </catalog_product_view>