臭虫的WordPress / WooCommerce网址

时间:2018-02-26 01:55:19

标签: php wordpress woocommerce

我们始终能够在网址中确定两个类别来过滤结果,以显示符合网址中两个类别的项目

例如:http://www.shoezies.co.nz/product-category/sale+shoes/

这将仅显示处于“促销”类别和“鞋类”类别的产品。

这已不再适用于最新的WordPress更新。有没有人体验过这种事情。

我已经联系过WooCommerce支持,但他们非常慢,所以希望社区可以帮助兄弟。

2 个答案:

答案 0 :(得分:0)

On new wordpress version, old php and wordpress/woocommerce functions doesn't work. So these problems often occurs after upgraded wordpress version. In my thought, some woocommerce functions related to product category will be changed.

If you let me know details info, I can fix them correctly Or you can search positive solutions yourself on google depends on this answer

答案 1 :(得分:0)

您的custom.js文件存在问题,请将代码更改为此。

(function( $ ) {
    'use strict';

    $(function() {
        $('.home-box:empty').hide();
    });
});

对于多个类别,您可以传递此URL,使用逗号分隔类别。

http://www.shoezies.co.nz/?product_cat=sale,shoes

我无法检查它是否有效,因为您的网站由于jQuery错误而无法呈现。