I have cross-sell configured both globally and for products.
Both are configured to use the same size image product image.
However, when the image display, the cross-sell product image is showing the default product image, as opposed to the ss_size3 image
that I would expect (the one that displays for global cross-sell).
The global and product cross sell definitions are similar (included below - I've removed the no-graphic blocks for ease of reading).
Does anyone know what I'm missing here?
Thanks,
- dc
#<!-- Global Cross-sell in Cart -->#
[-- DEFINE GLOBAL_CROSS_SELL --]
#<!-- HTML Snippet -->#
<table class="gcs_product_table">
<tbody>
[-- IF PRODUCT.DisplayName --]
<tr>
[-- IF CROSS_SELL_LINK --]
<td valign=top class="gcs_product_name"><a class="gcs_product_name" href="[-- CROSS_SELL_LINK --]">[-- PRODUCT.Name --]</a></td>
[-- ELSE --]
<td valign=top class="gcs_product_name">[-- PRODUCT.Name --]</td>
[-- END_IF --]
</tr>
[-- END_IF --]
<tr>
[-- IF CROSS_SELL_LINK --]
<td xidth=200 valign=top class="gcs_product_image"><a class="gcs_product_graphic" href="[-- CROSS_SELL_LINK --]"><img class="gcs_product_graphic" [-- PRODUCT.Graphic REMOVE_HTML --] alt="[-- PRODUCT.Name REMOVE_HTML --]"></a><br>[-- PRODUCT.Price --]</td>
[-- ELSE --]
<td xidth=200 valign=top class="gcs_product_image"><img class="gcs_product_graphic" [-- PRODUCT.Graphic REMOVE_HTML --] alt="[-- PRODUCT.Name REMOVE_HTML --]"></td>
[-- END_IF --]
</tr>
[-- END_IF --]
</tbody>
</table>
[-- END_DEFINE GLOBAL_CROSS_SELL --]
#<!-- Per-Product Cross-sell in Cart -->#
[-- DEFINE CART_CROSS_SELL --]
#<!-- HTML Snippet -->#
<table class="pcs_product_table">
<tbody>
[-- IF PRODUCT.DisplayName --]
<tr>
[-- IF CROSS_SELL_LINK --]
<td valign=top class="pcs_product_name"><a class="pcs_product_name" href="[-- CROSS_SELL_LINK --]">[-- PRODUCT.Name --]</a></td>
[-- ELSE --]
<td valign=top class="pcs_product_name">[-- PRODUCT.Name --]</td>
[-- END_IF --]
</tr>
[-- END_IF --]
<tr>
[-- IF CROSS_SELL_LINK --]
<td xidth=200 valign=top class="pcs_product_image"><a class="pcs_product_graphic" href="[-- CROSS_SELL_LINK --]"><img class="pcs_product_graphic" [-- PRODUCT.Graphic REMOVE_HTML --] alt="[-- PRODUCT.Name REMOVE_HTML --]"></a><br>[-- PRODUCT.Price --]</td>
[-- ELSE --]
<td xidth=200 valign=top class="pcs_product_image"><img class="pcs_product_graphic" [-- PRODUCT.Graphic REMOVE_HTML --] alt="[-- PRODUCT.Name REMOVE_HTML --]"><br>[-- PRODUCT.Price --]</td>
[-- END_IF --]
</tr>
[-- END_IF --]
</tbody>
</table>
[-- END_DEFINE CART_CROSS_SELL --]