Jump to content

Image Enlarge Text


Recommended Posts

HI
I would like to have the text 'click to enlarge' below the product image above or below the >print ?

Have seen it on other sites. Do i have to click a radio button to turn this on or is it in the code?

Anyone help with this thanks.

Link to comment
Share on other sites

Make sure that the useful link block exists in your product.tpl at around line 129:

>
<!-- usefull links-->
</pre>
<ul>
   {if $HOOK_EXTRA_LEFT}{$HOOK_EXTRA_LEFT}{/if}
{l s='Print'}

   {if $have_image && !$jqZoomEnabled}
{l s='View full size'}
   {/if}
</ul>



It should be just before the closing div of the pb-right-column div.

Link to comment
Share on other sites

I checked the code you mentioned and it was there but i found that if you want the 'view full size' to show then you have to say 'No' to Jqzoom. Then the 'View full size' is displayed.


Back Office >> Preferences >> Products
Products
Allow ordering out-of-stock product: Yes No *
Add to cart button is hidden when product is unavailable

Enable stock management: Yes No *

Display available quantities on product page: Yes No *

Enable JqZoom instead of Thickbox on product page: Yes No *


But then i removed this part from the code - && !$jqZoomEnabled

and got both zoom and 'view full size' . This way the customers know to click to enlarge because some don't

So Before:
<!-- usefull links-->


  • {if $HOOK_EXTRA_LEFT}{$HOOK_EXTRA_LEFT}{/if}
  • {l s='Print'}

    {if $have_image && !$jqZoomEnabled}
  • {l s='View full size'}
    {/if}


After:
<!-- usefull links-->

  • {if $HOOK_EXTRA_LEFT}{$HOOK_EXTRA_LEFT}{/if}
  • {l s='Print'}

    {if $have_image}
  • {l s='View full size'}
    {/if}



I fluked this change because i don't know code but if you can see any reason this may affect the rest of the store please let me know.

thanks
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...