คำถามติดแท็ก sales-invoice

4
ภาพผลิตภัณฑ์ในเทมเพลตอีเมลใบแจ้งหนี้
ฉันพยายามรับภาพผลิตภัณฑ์สำหรับเทมเพลตอีเมลใบแจ้งหนี้ ฉันใช้โค้ดด้านล่าง แต่ฉันจะได้รับภาพตัวยึด Magento ในแม่แบบอีเมล <td> <?php $objectManager = \Magento\Framework\App\ObjectManager::getInstance(); $product_id = $_item->getOrderItem()->getProduct(); $product = $objectManager->get('Magento\Catalog\Model\Product')->load($product_id); $_imagehelper = $objectManager->get('Magento\Catalog\Helper\Image'); $image_url = $_imagehelper->init($product, 'cart_page_product_thumbnail')->getUrl(); ?> <img src="<?php echo $image_url; ?>" alt="<?php echo $product->getName(); ?>" /> </td>
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.