该插件不错,应用在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: <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> 加上以下代码 <block type="ve_brpopup/list" name="brpopup" as="brpopup"/> 加了后应该显示是这样的: <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> 2. 打开 app\design\frontend\default\你的模板\template\page\html\header.phtml 把以下代码 <?php echo $this->getChildHtml('brpopup') ?> 加在后面(责任编辑:最模板) |