• Resolved hilbo6725

    (@hilbo6725)


    Hi there, I am using Woocommerce to sell my products, and two products keep hiding on the second page of the cart, and I have 2 spare spaces on page 1. Can’ for the life of me work out why, could someone work out why iglobe.com.au/buy-online ?????

Viewing 2 replies - 1 through 2 (of 2 total)
  • Woocommerce is showing 10 products on that page by default. You can override this by adding a filter in functions.php

    This exact snippet may or may not work depending on your theme, but this should give you an idea:

    // Display 12 products per page
    add_filter( 'loop_shop_per_page', create_function( '$cols', 'return 12;' ), 20 );\\
    Thread Starter hilbo6725

    (@hilbo6725)

    Just entered this code in the functions.php, and it crashed my site, think I better call my developer

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Cart problems’ is closed to new replies.