我在 Magento 1.7 和它的新副本上运行。
我想要实现的目标:在网站页面加载时,显示时事通讯模板块
{{block type="newsletter/subscribe" template="newsletter/subscribe.phtml"}}
作为 Magento 中的一次弹出窗口,cookie 将在给定时间段后过期,例如:1 周。
网络上的答案要么不具体,要么不够详细,因为我对脚本的了解并不广泛。
到目前为止我尝试了什么:
尝试添加灯箱:
1) 添加灯箱 CSS & JS
<script type="text/javascript" src="<?php echo $this->getJsUrl('lightbox/lightbox.js'); ?>"></script>
<link rel="stylesheet" type="text/css" href="<?php echo $this->getJsUrl('lightbox/lightbox.css'); ?>" media="screen"/>
2)在 view.phtml 我添加了一个链接
<a href="<?php echo $this->getLayout()->createBlock('cms/block')->setBlockId('measurement')->toHtml() ?>" rel="lightbox">Size chart</a>
灯箱正在工作,但未调用静态块...仍在弄清楚如何调用静态框..