Woocommerce layout

Posted in: Newspaper
Post count: 2

Hello, I have a problem with WooCommerce layout. Just 1 row with 4 products are displayed for each category and page. As I can change this? Can you help me?

Post count: 22421

Hi,
Unfortunately there is no setting to increase the number of posts but it can be done by editing this file: http://screencast.com/t/4ribMwT219

Thank you!

Post count: 2

Hi,
I’ve modified the code and everything is perfect. Thank you so much. It would be good that in the next update you you include these changes…

Post count: 240

Can you write out exactly what we are supposed to do here? I added this to my child functions.php but it still only shows 4 products:

// Woocommerce Number of product per page 8
add_filter(‘loop_shop_per_page’, create_function(‘$cols’, ‘return 20;’));

if (!function_exists(‘woocommerce_output_related_products’)) {
// Number of related products
function woocommerce_output_related_products() {
woocommerce_related_products(array(
‘posts_per_page’ => 4,
‘columns’ => 4,
‘orderby’ => ‘rand’,
)); // Display 4 products in rows of 1
}
}

Post count: 22421

Hi,
Unfortunately functions.php will not work from the child theme. The functions.php file in the child theme is different from the one in the main theme. This modification will have to be applied in the main file.
Thank you!

Viewing 5 posts - 1 through 5 (of 5 total)
The forum ‘Newspaper’ is closed to new topics and replies.