• Resolved kirstenvh32

    (@kirstenvh32)


    Ever since I updated my woocommerce plugin this morning, my products have not been showing properly in the grid format. I had it set to show 3 across and 10 down.. now suddenly a row will have 3 and the next row has 1 and then 2.. they’re scattered all over the place..

    any idea how to fix this?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter kirstenvh32

    (@kirstenvh32)

    I ended up finding the solution to this, if anyone else is having this problem, add this code to your functions.php file:

    // Change number of columns per row
    add_filter(‘loop_shop_columns’, ‘change_loop_columns’, 999);
    add_filter(‘storefront_loop_columns’, ‘change_loop_columns’, 999);
    function change_loop_columns() {
    return 4;
    }

    Where is says “return 4”, you can change that number to the amount you want across…

    Plugin Support kellymetal a11n

    (@kellymetal)

    Hi there,

    Glad to hear you were able to sort things out and get your products displaying correctly again! : )

    Also, thank you for coming back to share your solution with the community.

    I’m going to mark this thread as resolved. If you have any further questions, please start a new thread.

    Have a wonderful day!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Amount of products in a row’ is closed to new replies.