Magento 时事通讯未发布

发布于 2024-10-06 16:48:35 字数 1051 浏览 2 评论 0原文

我希望在我的主页上有一份时事通讯。我找到了以下代码,并将其复制到“内容”选项卡中。

{{block type="core/template" template="newsletter/subscribe.phtml"}}

这是在我的页面上呈现的,但是我找不到响应。也就是说,收据不会输入新闻通讯部分。似乎没有在任何地方发布。这是生成的 HTML。

<form action="" method="post" id="newsletter-validate-detail"> 
    <div class="block-content"> 
        <label for="newsletter">Sign Up for Our Newsletter:</label> 
        <div class="input-box"> 
           <input type="text" name="email" id="newsletter" title="Sign up for our newsletter" class="input-text required-entry validate-email" /> 
        </div> 
        <div class="actions"> 
            <button type="submit" title="Subscribe" class="button"><span><span>Subscribe</span></span></button> 
        </div> 
    </div> 
</form> 
<script type="text/javascript"> 
//<![CDATA[
    var newsletterSubscriberFormDetail = new VarienForm('newsletter-validate-detail');
//]]>
</script>

I wish to have a newsletter on my home page. I found the following code, which I have copied into my "Content" tab.

{{block type="core/template" template="newsletter/subscribe.phtml"}}

This is rendered on my page, however I cannot find the response. That is, the receipts are not entered into the newsletter section. It doesn't seem to post anywhere. Here is the HTML produced.

<form action="" method="post" id="newsletter-validate-detail"> 
    <div class="block-content"> 
        <label for="newsletter">Sign Up for Our Newsletter:</label> 
        <div class="input-box"> 
           <input type="text" name="email" id="newsletter" title="Sign up for our newsletter" class="input-text required-entry validate-email" /> 
        </div> 
        <div class="actions"> 
            <button type="submit" title="Subscribe" class="button"><span><span>Subscribe</span></span></button> 
        </div> 
    </div> 
</form> 
<script type="text/javascript"> 
//<![CDATA[
    var newsletterSubscriberFormDetail = new VarienForm('newsletter-validate-detail');
//]]>
</script>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不知所踪 2024-10-13 16:48:35

您需要使用 newsletter/subscribe 作为块类型,因为 core/template 没有 getFormActionUrl() 方法,该方法返回提交的 url时事通讯订阅表。

在您的 CMS 页面内使用此代码:

{{block type="newsletter/subscribe" template="newsletter/subscribe.phtml"}}

You need to use newsletter/subscribe as you block type because core/template doesn't have getFormActionUrl() method, which returns url for submitting newsletter subscription form.

Use this code inside of your CMS page:

{{block type="newsletter/subscribe" template="newsletter/subscribe.phtml"}}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文