我已设置每页显示9种产品。在前几页上,它可以正确显示,但是在几页后,它减少了每页产品的数量,在一页上显示7、4、6或3。 https://cheezainetc.com/shop/ 50岁后退房 那里有什么问题?
答案 0 :(得分:1)
请逐个停用所有插件,以检查哪个插件导致了此问题。
或
只需更改编号。在Woocommerce Customizer中连续显示的产品种类
那可能会解决问题
答案 1 :(得分:0)
尝试一下,粘贴到您的functions.php
add_filter( 'loop_shop_per_page', 'new_loop_shop_per_page', 20 );
function new_loop_shop_per_page( $cols ) {
// $cols contains the current number of products per page based on the value stored on Options -> Reading
// Return the number of products you wanna show per page.
$cols = 9;
return $cols;
}
如果问题仍然存在,请将您的主题更改为wordpress默认的2016年主题(与其他wp免费主题相比更兼容),然后进行检查。 较新版本的wp和woocommerce可能与主题兼容。