嗨,我正在尝试向客户在magento(我的版本1.6.2.0)下达新订单时收到的新订单电子邮件添加链接。
我用以下内容编辑了/public_html/app/design/frontend/base/default/template/email/order/items/order/default.phtml:
<?php $_item = $this->getItem() ?>
<?php $_order = $this->getItem()->getOrder() ?>
----
<!-- Start of edit file -->
<a href="<?php echo $this->getProductUrl($_item) ?>">
<?php echo $this->htmlEscape($this->getSku($_item)) ?></a>
Run Code Online (Sandbox Code Playgroud)
当我在sku列中收到确认电子邮件时,颜色会从黑色(默认为css)变为浅蓝色链接,但它没有任何链接属性,如下所示: email_photo 我也尝试过:
<a href="<?php echo $this->getUrlPath($_item) ?>">
<?php echo $this->htmlEscape($this->getSku($_item)) ?></a>
Run Code Online (Sandbox Code Playgroud)
我最终得到了同样的东西。
谁能告诉我我在做什么错?谢谢。