I have a project where I need to have a 4th product image size ("Small" - not 'icon','medium',or 'large') called from a special skin.
For category images, I was able to easily create a "images/category/small/" directory within the skin's directory structure and change the .xml package to call for 'small' instead of 'icon'. This worked just fine to display the special sized images for the categories
Working Example:
<xsl:value-of select="aspdnsf:LookupEntityImage(EntityID, $EntityName, 'small', 0, $AltText)" disable-output-escaping="yes" />
Trying the same method only results the product image defaulting to 'medium'.
Non-Working Example:
<xsl:value-of select="aspdnsf:LookupProductImage(ProductID, ImageFileNameOverride, SKU, 'small', 1, $AltText)" disable-output-escaping="yes"/>
Is there a way to either a) direct an xml package to pull product images from a directory within the skin directory
OR
Is there a way to create a 4th image folder within the root directory and have the program recognize it.
(I am using SKU's to identify product images, not product ID's.)
I would appreciate any suggestions! Thank you,