简体   繁体   中英

Fetching Magento thumbnail

We have a quote page with the following code for fetching item information but we can't get the product image to show.

<tr>
  <td rowspan="<?php echo $mergedCells; ?>" class="cart-image"><img src="<?php echo $item->getProductThumbnail(); ?>" width="75" height="75"/></td>
  <td><?php echo $item->getName(); ?> <?php echo $item->getProductOptions(); ?><br />
    <?php echo $this->__('SKU:') ?> <?php echo $item->getSku(); ?></td>
  <td class="ItemQty"><?php echo $this->getItemQty($item); ?></td>
</tr>

Have tried a couple of different solutions but still getting the same result, would be great if anyone has a solution or an idea we can try.

<?php $item = $this->getItem() ?>

Try adding this before your getProductThumbnail() call.

You may also want to try:

<img src="<?php echo $this->getProductThumbnail()->resize(50); ?>" alt="<?php echo $this->htmlEscape($this->getProductName()) ?>" /></a>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM