Version Notes
This extension provide zoom functionality over product detail page for product images.
Download this release
Release Info
| Developer | Magento Core Team |
| Extension | VS_Featurezoom |
| Version | 1.2.1.1 |
| Comparing to | |
| See all releases | |
Code changes from version 1.2.1.0 to 1.2.1.1
app/design/frontend/default/default/template/featurezoom/media.phtml
CHANGED
|
@@ -35,8 +35,8 @@
|
|
| 35 |
$_helper = $this->helper('catalog/output');
|
| 36 |
|
| 37 |
?>
|
| 38 |
-
<?php $imageheight = Mage::getStoreConfig('featurezoom/mainimagesize/
|
| 39 |
-
<?php $imagewidth = Mage::getStoreConfig('featurezoom/mainimagesize/
|
| 40 |
<?php if ($_product->getImage() != 'no_selection' && $_product->getImage()): ?>
|
| 41 |
<p class="product-image">
|
| 42 |
<?php
|
|
@@ -88,7 +88,7 @@ function imageswitcher(imagename, imagefull){
|
|
| 88 |
jQuery('#image1').attr('src',imagefull);
|
| 89 |
var options = {
|
| 90 |
zoomrange: [<?php echo Mage::getStoreConfig('featurezoom/zoomrange/start');?>, <?php echo Mage::getStoreConfig('featurezoom/zoomrange/end');?>],
|
| 91 |
-
magnifiersize: [<?php echo Mage::getStoreConfig('featurezoom/magnifiersize/
|
| 92 |
magnifierpos: '<?php echo Mage::getStoreConfig('featurezoom/general/magnifierpos');?>',
|
| 93 |
cursorshade: true,
|
| 94 |
largeimage: imagename //<-- No comma after last option!
|
|
@@ -101,7 +101,7 @@ function imageswitcher(imagename, imagefull){
|
|
| 101 |
Event.observe(window, 'load', function() {
|
| 102 |
jQuery('#image1').addimagezoom({
|
| 103 |
zoomrange: [<?php echo Mage::getStoreConfig('featurezoom/zoomrange/start');?>, <?php echo Mage::getStoreConfig('featurezoom/zoomrange/end');?>],
|
| 104 |
-
magnifiersize: [<?php echo Mage::getStoreConfig('featurezoom/magnifiersize/
|
| 105 |
magnifierpos: '<?php echo Mage::getStoreConfig('featurezoom/general/magnifierpos');?>',
|
| 106 |
cursorshade: true,
|
| 107 |
largeimage: '<?php echo $this->helper('catalog/image')->init($_product, 'image');?>' //<-- No comma after last option!
|
| 35 |
$_helper = $this->helper('catalog/output');
|
| 36 |
|
| 37 |
?>
|
| 38 |
+
<?php $imageheight = Mage::getStoreConfig('featurezoom/mainimagesize/width');?>
|
| 39 |
+
<?php $imagewidth = Mage::getStoreConfig('featurezoom/mainimagesize/height');?>
|
| 40 |
<?php if ($_product->getImage() != 'no_selection' && $_product->getImage()): ?>
|
| 41 |
<p class="product-image">
|
| 42 |
<?php
|
| 88 |
jQuery('#image1').attr('src',imagefull);
|
| 89 |
var options = {
|
| 90 |
zoomrange: [<?php echo Mage::getStoreConfig('featurezoom/zoomrange/start');?>, <?php echo Mage::getStoreConfig('featurezoom/zoomrange/end');?>],
|
| 91 |
+
magnifiersize: [<?php echo Mage::getStoreConfig('featurezoom/magnifiersize/width');?>,<?php echo Mage::getStoreConfig('featurezoom/magnifiersize/height');?>],
|
| 92 |
magnifierpos: '<?php echo Mage::getStoreConfig('featurezoom/general/magnifierpos');?>',
|
| 93 |
cursorshade: true,
|
| 94 |
largeimage: imagename //<-- No comma after last option!
|
| 101 |
Event.observe(window, 'load', function() {
|
| 102 |
jQuery('#image1').addimagezoom({
|
| 103 |
zoomrange: [<?php echo Mage::getStoreConfig('featurezoom/zoomrange/start');?>, <?php echo Mage::getStoreConfig('featurezoom/zoomrange/end');?>],
|
| 104 |
+
magnifiersize: [<?php echo Mage::getStoreConfig('featurezoom/magnifiersize/width');?>,<?php echo Mage::getStoreConfig('featurezoom/magnifiersize/height');?>],
|
| 105 |
magnifierpos: '<?php echo Mage::getStoreConfig('featurezoom/general/magnifierpos');?>',
|
| 106 |
cursorshade: true,
|
| 107 |
largeimage: '<?php echo $this->helper('catalog/image')->init($_product, 'image');?>' //<-- No comma after last option!
|
package.xml
CHANGED
|
@@ -1,28 +1,18 @@
|
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>VS_Featurezoom</name>
|
| 4 |
-
<version>1.2.1.
|
| 5 |
<stability>stable</stability>
|
| 6 |
-
<license uri="http://opensource.org/licenses/osl-3.0.php">
|
| 7 |
<channel>community</channel>
|
| 8 |
<extends/>
|
| 9 |
-
<summary>This extension provide zoom functionality over product detail page for product images
|
| 10 |
-
<description
|
| 11 |
-
<p>==============================================================================</p>
|
| 12 |
-
<p>ver 1.1.0 release have:-</p>
|
| 13 |
-
<p><strong>Safari and Chrome bug fixed.</strong></p>
|
| 14 |
-
<p>New:- Admin configuration panel have more configuration facility like zoom range, magnifier size etc...........</p>
|
| 15 |
-
<p>==============================================================================</p>
|
| 16 |
-
<p>Installation Tips:-</p>
|
| 17 |
-
<p>1. Clear Catche</p>
|
| 18 |
-
<p>2. Logout and login again.</p>
|
| 19 |
-
<p>##############################################################################</p>
|
| 20 |
-
<p>NOTE:- For get perfect zoom result with this extension you need to spicify <strong>width</strong> and <strong>height </strong>attribut for product base image.</p></description>
|
| 21 |
<notes>This extension provide zoom functionality over product detail page for product images.</notes>
|
| 22 |
-
<authors><author><name>
|
| 23 |
-
<date>2012-
|
| 24 |
-
<time>
|
| 25 |
-
<contents><target name="magecommunity"><dir name="VS"><dir name="Featurezoom"><dir name="Helper"><file name="Data.php" hash="77e3dc4cd8081d329bbadc986625c956"/></dir><dir name="Model"><file name="Magnifierpos.php" hash="56f7bc9fe220eeaabfc97e135f6cc9c2"/></dir><dir name="etc"><file name="config.xml" hash="e999af8152e01ba906280bbe8732291c"/><file name="system.xml" hash="a161cad61a873ea0ae2670a862010778"/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="VS_Featurezoom.xml" hash="b1bf82a433983b29ca8651b03872edc3"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="default"><dir name="default"><dir name="
|
| 26 |
<compatible/>
|
| 27 |
<dependencies/>
|
| 28 |
</package>
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>VS_Featurezoom</name>
|
| 4 |
+
<version>1.2.1.1</version>
|
| 5 |
<stability>stable</stability>
|
| 6 |
+
<license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
|
| 7 |
<channel>community</channel>
|
| 8 |
<extends/>
|
| 9 |
+
<summary>This extension provide zoom functionality over product detail page for product images.</summary>
|
| 10 |
+
<description>This extension provide zoom functionality over product detail page for product images.</description>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 11 |
<notes>This extension provide zoom functionality over product detail page for product images.</notes>
|
| 12 |
+
<authors><author><name>Virendra Kumar Sharma</name><user>auto-converted</user><email>bhardwajveerendra@gmail.com</email></author></authors>
|
| 13 |
+
<date>2012-02-22</date>
|
| 14 |
+
<time>11:48:56</time>
|
| 15 |
+
<contents><target name="magecommunity"><dir name="VS"><dir name="Featurezoom"><dir name="Helper"><file name="Data.php" hash="77e3dc4cd8081d329bbadc986625c956"/></dir><dir name="Model"><file name="Magnifierpos.php" hash="56f7bc9fe220eeaabfc97e135f6cc9c2"/></dir><dir name="etc"><file name="config.xml" hash="e999af8152e01ba906280bbe8732291c"/><file name="system.xml" hash="a161cad61a873ea0ae2670a862010778"/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="VS_Featurezoom.xml" hash="b1bf82a433983b29ca8651b03872edc3"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="default"><dir name="default"><dir name="template"><dir name="featurezoom"><file name="media.phtml" hash="bb33acba01dcb6a25722b35ed55cd65b"/></dir></dir><dir name="layout"><file name="featurezoom.xml" hash="ab86d169ba945fa6b3aef0743ff044bc"/></dir></dir></dir></dir></target><target name="mage"><dir name="js"><dir name="VS"><file name="Thumbs.db" hash="a47bc5038e6d6987aee99d05d54ddcaa"/><file name="featuredimagezoomer.js" hash="e06ca70bcdd7964f3b4097f6b30561e3"/><file name="jquery-1.6.4.js" hash="c677462551f4cc0f2af192497b50f3f5"/><file name="lightbox.js" hash="c5c7c74acf9e5afe11a886a6dc0e14a8"/><file name="opc-ajax-loader.gif" hash="e805ea7eca1f34c75ba0f93780d32d38"/><file name="spinningred.gif" hash="46893b8266d278b9a81d65cdd1d8f8bf"/></dir></dir></target></contents>
|
| 16 |
<compatible/>
|
| 17 |
<dependencies/>
|
| 18 |
</package>
|
