怎么样隐藏或删除Default Sorting?
方法一
修改路径:Appearance – Theme File Editor – Theme Functions(functions.php)
functions.php 添加下面代码
// Remove Sorting drop down menu on WooCommerce Shop & Archive Pages
remove_action( ‘woocommerce_before_shop_loop’, ‘woocommerce_catalog_ordering’, 30 );
方法二【推荐方法】
修改路径:Appearance – Customize – Additional CSS
/*hide woocommerce product sort menu */
.woocommerce-ordering {
display: none;
}
怎么样更改Default Sorting?
系统自带下拉菜单包含下面:
默认排序(产品页面中可以定义顺序,不过1个产品属于多个分类时候就会有冲突)
销量
评价
最新
价格高
价格低
最多选择的是最新(前台效果就是最新上架的品排在前面)
旧版本的wordpress版本设置方法:
新版本的wordpress版本设置方法:
后台Appearance-Customize-WooCommerce-Product Catalog