以magento顺序显示图像

时间:2012-10-11 11:04:48

标签: magento magento-1.7

我在结帐成功页面上添加了评论。注释是图像文件的路径。我想在那里显示图像而不是它的路径。

我添加了以下用于添加评论的代码

$order->setState('processing', 'invoiced', $img_path);

是否可以发送图像的html并显示图像而不是路径?

1 个答案:

答案 0 :(得分:1)

创建一个扩展app / design / adminhtml / default / default / template / sales / order / view / history.phtml的自定义模块

更改第71行
        <?php if ($_item->getComment()): ?>
            <br/><?php echo $this->escapeHtml($_item->getComment(), array('b','br','strong','i','u')) ?>
        <?php endif; ?>

        <?php if ($_item->getComment()): ?>
            <br/><?php echo $this->escapeHtml($_item->getComment(), array('b','br','strong','i','u', 'img')) ?>
        <?php endif; ?>

(如果您有任何问题,请检查sales_flat_order_status_history数据库中'comment'的值,看看它是否已经是escapeHtml)