How do I stop the 'View larger image' button from showing under medium images?
I still need to have the large image available, so can't delete the image from the Large image folder.
How do I stop the 'View larger image' button from showing under medium images?
I still need to have the large image available, so can't delete the image from the Large image folder.
um, edit source.![]()
I have searched all files for <img border="0" src="skins/skin_1/images/showlarger.gif" align="absmiddle" border="0" alt="Click here to view larger image"> and showlarger.gif - nothing.
So where exactly is it? Are saying I need to purchase the source code?
Last edited by BradC; 06-04-2007 at 10:36 PM.
For this instance, yes you'll need the source code.
It's defined in the ASPDNSFCommon\XSLTExtensionBase.cs file.
Alternatively, remove the line from the xmlpackage that makes the call to retrieve the image (eg. depending on your version it may look something like <xsl:value-of select="aspdnsf:LookupProductImage(ProductID, ImageFilenameOverride, SKU, 'medium', 1, $AltText)" disable-output-escaping="yes"/>) and instead just call the image directly (just use an img tag with the images directory and the product id or sku or image filename override value as the src) so that you ONLY get the image you are looking for instead of all the built in html (including the View Larger Image button).
<a href="http://www.aspdotnetstorefront.com">Shopping Cart Software</a>
This is my line of code to do this:
<a href="{concat('/images/product/large/', SEName, '.jpg')}"><img src="{concat('/images/product/medium/', SEName, '.jpg')}" alt="{concat(Name, ' Label')}" /></a>
This is placed in the xmlpackage that the product page uses.
It shows the medium image and loads the large image on click. This does assume a few things so your results may vary.
Alternatively, edit the image showlarger.gif, so that it's empty
http://www.esedirect.co.uk
--------------------------------------------------------------------------
Using MS 9.2.0.0 with the following customisations:
Lightbox/Fancybox enlarged images;
Auto-suggest searchbox;
Extra product information shown only to our IP Address (such as supplier info, costs, etc.);
Failed transactions emailed via trigger;
Custom app to show basket contents when customer online;
Orders pushed through to accounting systems.
All the above without source!