(click to zoom)

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
13 yıl önce
I want to add a (click to zoom) underneath the picture in the detailed product page.  I change the product vairiant and nothing happens?
13 yıl önce
What do you mean add a (click to zoom)?
13 yıl önce
Just the wording under the pic
13 yıl önce
ProductBox1.ascx and/or ProductBox2.ascx is where the image is displayed. Just add (click to zoom) under the image like so:

    <div class="picture">
        <asp:HyperLink ID="hlImageLink" runat="server" />
        <br />(click to zoom)
    </div>

You may want to enclose it in a <span> or something and add some formatting or whatever... like to center it or right align it...
13 yıl önce
Still not showing up.
13 yıl önce
edit your product template (folder  templates/products )
eg
VariantsInGrid.ascx
OneVariant.ascx

        <div class="picture">
            <a runat="server" id="lnkMainLightbox">
                <asp:Image ID="defaultImage" runat="server" />
            </a>
            <br />        (click to zoom)
            <asp:ListView ID="lvProductPictures" runat="server" GroupItemCount="3">
                <LayoutTemplate>
13 yıl önce
Still not working.
13 yıl önce
What version are you using? Also, what template?
13 yıl önce
1.9 and I have switched between the 2 templates. And have changed both template files but nothing.
13 yıl önce
found it modules/productinfo.aspx
That's what needed to be changed.
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.