Site logo

Archived topic

Number of products per page from desktop and smartphone

1 reply · Started by Ceramica Sud Curlante on February 9, 2022

Viewing posts 1–2 of 2

I would like to display 8 products per page from desktop

And 4 products per page from smartphone

It's possible?

thank you

Hi there,

This is possible. Can you try adding this PHP snippet?

add_filter( 'loop_shop_per_page', 'new_loop_shop_per_page', 20 );

function new_loop_shop_per_page( $cols ) {
$cols = 8;
 if(preg_match("/(android|avantgo|blackberry|bolt|boost|cricket|docomo|fone|hiptop|mini|mobi|palm|phone|pie|tablet|up\.browser|up\.link|webos|wos)/i", $_SERVER["HTTP_USER_AGENT"])){
	  $cols = 4;
  }
  
  return $cols;
}

Here is a link you may refer to with regards to adding PHP: https://docs.generatepress.com/article/adding-php/

Kindly let us know how it goes. :)

This archived topic is closed to new replies.