2

我已经设置了一个带有自定义选项的简单产品,但我想从类别页面(列表或网格模式)中隐藏基本价格。我怎样才能做到这一点 ?

我突出显示了我想删除的“价格”:http: //i.stack.imgur.com/VBMzs.png

这里有我的 price.phtml 代码:http ://pastebin.com/JGjSQDB7

4

3 回答 3

1
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();
        }
    })
})
于 2013-07-12T08:27:19.267 回答
0

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.

于 2013-02-11T01:14:33.687 回答
0

我会使用 CSS 隐藏它,这可能是隐藏价格的最简单方法。我不确定你的选择器叫什么。如果您包含指向该网站的链接,我相信您会得到帮助!

于 2013-02-10T19:55:31.650 回答