我在结帐成功页面上添加了评论。注释是图像文件的路径。我想在那里显示图像而不是它的路径。
我添加了以下用于添加评论的代码
$order->setState('processing', 'invoiced', $img_path);
是否可以发送图像的html并显示图像而不是路径?
答案 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)