What is the shortcode for a product's full-size image, not its thumbnail?
Background
Our Wishlist images are blurry, because many of our thumbnails were created when we used only 300x300 sizing (we now use 500x500). Would take a long time to delete and recreate all product thumbnails to be the larger size, so for our Wishlist pages, which have 35% width cell for thumbnails, I prefer to pull up the full-size image (CSS will shrink it), similar to how our Product pages work.
Current Wishlist code is:
Product page code is:
Wouldn't it be nice if simply changing [THUMBNAIL] to [image1] worked on the Wishlist page, but it doesn't, obviously.
So back to my original question: what is the shortcode for a product's image? In terms of our file structure, [THUMBNAIL] brings up the following:
I want the same structure EXCEPT:
• no "thumbnails" directory
• no "_thumbnail" before the ".jpg"
Is there a shortcode for that?
Thanks!
Background
Our Wishlist images are blurry, because many of our thumbnails were created when we used only 300x300 sizing (we now use 500x500). Would take a long time to delete and recreate all product thumbnails to be the larger size, so for our Wishlist pages, which have 35% width cell for thumbnails, I prefer to pull up the full-size image (CSS will shrink it), similar to how our Product pages work.
Current Wishlist code is:
HTML Code:
<a href="product.asp?itemid=[ITEM_CATALOGID]"><img src="thumbnail.asp?file=[THUMBNAIL]&maxx=500&maxy=500" /></a>
HTML Code:
<a href="[image1]" class="[3dzoom_class]" id="listing_main_image_link"><img itemprop="image" src="thumbnail.asp?file=[image1]&maxx=[image_medium_w]&maxy=0" align="middle" id="large" name="large" alt="[name]" /></a>
So back to my original question: what is the shortcode for a product's image? In terms of our file structure, [THUMBNAIL] brings up the following:
HTML Code:
<img src="thumbnail.asp?file=assets/images/beautyshots/thumbnails/A015-2125CD-RG_thumbnail.jpg&maxx=500&maxy=500">
• no "thumbnails" directory
• no "_thumbnail" before the ".jpg"
Is there a shortcode for that?
Thanks!
Comment