我已经设置了一个带有自定义选项的简单产品,但我想从类别页面(列表或网格模式)中隐藏基本价格。我怎样才能做到这一点 ?
我突出显示了我想删除的“价格”:http: //i.stack.imgur.com/VBMzs.png
这里有我的 price.phtml 代码:http ://pastebin.com/JGjSQDB7
我已经设置了一个带有自定义选项的简单产品,但我想从类别页面(列表或网格模式)中隐藏基本价格。我怎样才能做到这一点 ?
我突出显示了我想删除的“价格”:http: //i.stack.imgur.com/VBMzs.png
这里有我的 price.phtml 代码:http ://pastebin.com/JGjSQDB7
jQuery(document).ready(function () {
jQuery('.price-box').each(function () {
if (jQuery(this).find(jQuery('.minimal-price-link')).length > 0) {
jQuery(this).find('.regular-price').hide();
}
})
})
Since you have jQuery installed, you can do the following:
jQuery(document).ready(function () {
jQuery('.price-box').each(function () {
if (jQuery(this).find(jQuery('.minimal-price-link')).length > 0) {
jQuery(this).find('.regular-price').hide();
}
})
})
This loops through .price-box
individually and will conditionally hide .regular-price
depending on the availability of .minimal-price-link
in that given box.
我会使用 CSS 隐藏它,这可能是隐藏价格的最简单方法。我不确定你的选择器叫什么。如果您包含指向该网站的链接,我相信您会得到帮助!