Magento右下角底部弹出广告插件使用方法

2,421 人次阅读
一条评论

共计 1570 个字符,预计需要花费 4 分钟才能阅读完成。

该插件不错,应用在magento各类版本上,有点类似国内的当当凡客网右下角广告弹出插件,可以自动收缩。
下载地址是: http://www.magentocommerce.com/magento-connect/vsmartexts/extension/6872/bottom_pop_ads
Key2.0:http://connect20.magentocommerce.com/community/Bottom_Pop_Ads

该插件的功能是在底部弹出一个广告,广告可以调用static block id或者产品id
该插件安装后还需要修改模板文件
1.打开
magento\app\design\frontend\default\你的模板\layout\page.xml
See lines:
[php]
<block type="page/html_header" name="header" as="header">
<block type="page/template_links" name="top.links" as="topLinks"/>
<block type="page/switch" name="store_language" as="store_language" template="page/switch/languages.phtml"/>
<block type="core/text_list" name="top.menu" as="topMenu"/>
<block type="page/html_wrapper" name="top.container" as="topContainer" translate="label">
<label>Page Header</label>
<action method="setElementClass"><value>top-container</value></action>
</block>
</block>
[/php]
加上以下代码
[php]
<block type="ve_brpopup/list" name="brpopup" as="brpopup"/>
[/php]
加了后应该显示是这样的:
[php]
<block type="page/html_header" name="header" as="header">
<block type="page/template_links" name="top.links" as="topLinks"/>
<block type="page/switch" name="store_language" as="store_language" template="page/switch/languages.phtml"/>
<block type="core/text_list" name="top.menu" as="topMenu"/>
<block type="page/html_wrapper" name="top.container" as="topContainer" translate="label">
<label>Page Header</label>
<action method="setElementClass"><value>top-container</value></action>
</block>
<block type="ve_brpopup/list" name="brpopup" as="brpopup"/>
</block>
[/php]
2. 打开
app\design\frontend\default\你的模板\template\page\html\header.phtml
把以下代码
[php]
<?php echo $this->getChildHtml(‘brpopup’) ?>
[/php]

正文完
 0
评论(一条评论)