If you are having issues with Gutenberg editor, please simply download official Classic editor plugin.
Haven't found you're looking for? Visit goodstore howto web

Change Number of Products per Row on Category Display Pages

  • I have installed the Good Store theme on my site and I'm making some customizations, however, I have been trying unsuccessfully now for a while to change the number of products that display in each row on the category page.  The default is 3 per row, but I need at least 4 per row.  I have tried adding the code in the functions:

    // Change number or products per row to 4
    add_filter('loop_shop_columns', 'loop_columns');
    if (!function_exists('loop_columns')) {
    function loop_columns() {
    return 4; // 4 products per row
    }
    }

    This code in functions.php is not working...is there a setting I'm missing to change the number of products displayed per row??

  • All following comments are shown for registered users only!

    (3 more comments)
This discussion has been solved.
All Discussions