Fancybox不在产品页面上工作

时间:2014-05-27 09:32:05

标签: jquery magento fancybox lightbox product

我已经通过magento connect在magento中安装了fancybox扩展,它正在处理cms和静态块,但它不能用于 view.phtml 文件。

实际上我已经在magento中创建了一个属性size_chat,并将其添加到attribute_set中。 然后添加尺寸表图像“size-chart.jpg”并在 view.phtml 中获取其值。

<div>
<?php $chart = $_product->getResource()->getAttribute('size_chart')->getFrontend()->getValue($_product); ?>
<?php if($chart !="" ): ?>
<a rel="iframeLink" href="http://localhost/magento/media/size/<?php echo $chart ?>">Size Chart</a></div>
<?php endif;?>      

<script type="text/javascript">// <![CDATA[
jQuery("a[rel=iframeLink]").fancybox({
    'type' : 'iframe',
    'width' : 800,
    'height' : 600
});
// ]]></script>

</div>

现在我想在产品页面的fancybox中打开此图像,我该怎么办?

0 个答案:

没有答案