在Magento中添加新模板时更改默认模板?

时间:2014-10-16 05:52:11

标签: php magento

任何人帮助我,

当我在新闻稿中添加新模板时,下面提到的内容会自动出现(另请参见下图)。我需要更改该模板

接下来的步骤: 时事通讯 - >时事通讯模板 - >添加新模板(然后我会在文字编辑器中看到以下内容)

在哪里更改magento中的以下内容

Follow this link to unsubscribe

{{var subscriber.getUnsubscriptionLink()}}

enter image description here

1 个答案:

答案 0 :(得分:0)

是的,我找到了该文件。

位于路径下方。希望这有助于将来的任何人

<强> \应用\代码\核心\法师\通讯\模型\的template.php

public function getTemplateText()
{
    if (!$this->getData('template_text') && !$this->getId()) {
        $this->setData('template_text',
            Mage::helper('newsletter')->__('Follow this link to unsubscribe <!-- This tag is for unsubscribe link  --><a href="{{var subscriber.getUnsubscriptionLink()}}">{{var subscriber.getUnsubscriptionLink()}}</a>')
        );
    }

    return $this->getData('template_text');
}