Jump to content

[Resolved] Disable Product Image Zoom


CoderJim

Recommended Posts

I need to Disable the product image zoom feature, not only the associated text which seems fairly straightforward but the feature itself.

An interesting anomaly occurs when the product page is viewed on a tablet and the side menu/cssmenu is accessed, its nearly impossible not to trigger the zoom which can lock the screen.

Link to comment
Share on other sites

The stock Foundation skin does not have a zoom/magnify on hover feature, so I assume you are using a different skin.

In Kurouto, for example:

Find:
{if $PRODUCT.magnify}
<a href="{$PRODUCT.source}" class="magnify" title="{$PRODUCT.name}" rel="">
  <img src="{$PRODUCT.medium}" alt="{$PRODUCT.name}" id="preview" />
</a>
<p class="hover_zoom">{$LANG.catalogue.hover_zoom}</p>
{else}
<img src="{$PRODUCT.medium}" alt="{$PRODUCT.name}" id="preview" />
{/if}

Change:
{if $PRODUCT.magnify}

To:
{if false && $PRODUCT.magnify}

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...