我从Themeforest购买了“Megashop - Responsive Magento Theme”,我想禁用“添加到购物车”的“快速查看”,但我不知道在哪里看。 magento的后端没有扩展。代码段说:
<div class="product_icons">
<button type="button" title="add to cart" class="button btn-cart" onclick="showOptions('6')">
<span>
</button>
<a href="http://xxx.xx/ajax/index/options/product_id/6/" class="fancybox quick_view quick_box6" id="fancybox6">quick view</a>
我必须在哪里查找代码段以禁用“添加到购物车”的fancybox?
Thanx的帮助!
答案 0 :(得分:0)
如果您打算通过后端启用/禁用系统配置设置来执行此操作,则应首先创建自己的配置设置。您可以在此主题的模块目录中找到system.xml并添加您的设置。您可以按照本教程创建自定义系统配置设置http://alanstorm.com/custom_magento_system_configuration。 然后在你的代码中
<div class="product_icons">
<button type="button" title="add to cart" class="button btn-cart" onclick="showOptions('6')">
<span>
</button>
<?php if(Mage::getStoreConfig('theme_module/quickview/active')): ?>
<a href="http://xxx.xx/ajax/index/options/product_id/6/" class="fancybox quick_view quick_box6" id="fancybox6">quick view</a>
<?php endif; ?>
如果您没有任何可用于主题设置的模块,则需要在上述链接后创建一个小模块。