现在我正在使用magento1.9并且安装主题是“http://www.magentocommerce.com/magento-connect/free-theme-electronics-online-by-pagayo.html” 我在我的主页上添加带有图像缩略图的带有滑块的滑块。 烤滑动链接低于“http://www.jssor.com/demos/nested-slider.html” PLZ建议我。
答案 0 :(得分:1)
首先使用嵌套滑块在your_theme_/template/page/html/nested-slider.phtml
中创建一个页面。
在your_theme_/template/page/html/header.phtml
调用新页面。
<?php echo $this->getLayout()->createBlock('core/template')->setTemplate('page/html/nested-slider.phtml')->toHtml();?>
<?php echo $this->getChildHtml('nested-slider'); ?> // displays the page where it is used
准备好将图像传递给静态块后。 使用下面的代码在幻灯片框架内调用图像
<?php echo $this->getLayout()->createBlock('cms/block')->setBlockId('id_block_static')->toHtml(); ?>
答案 1 :(得分:0)
我建议您使用M-Connect Media为Magento开发的最佳嵌套选项卡滑块扩展,而不是Magento社区。 您可以利用此扩展程序创建多个选项卡,并在每个选项卡中添加多个横幅滑块,在结果中,您将获得多个选项卡,每个选项卡中包含多个滑块。 它适用于Magento 1和2
Magento 1 - https://www.mconnectmedia.com/nested-slider.html
Magento 2 - https://www.mconnectmedia.com/nested-slider-magento2.html