• Resolved sagasta15

    (@sagasta15)


    Hi,

    I’m attempting to customize “Products displayed per page” to 9 products, but I can’t, it is always showed 10 products in each page. This is the link: http://www.fernandohijo.com/tienda.

    I’ve searched in Google, but the only solution I’ve found and hasn’t worked is:

    //display 16 products per page
    add_filter( ‘loop_shop_per_page’, create_function( ‘$cols’, ‘return 10;’ ), 20 );

    So how can I set correctly? If it were impossible from plugin settings, I would like to know how I can do it from plugin code.

    Thanks in advance!

    https://wordpress.org/plugins/woocommerce/

Viewing 1 replies (of 1 total)
  • Thread Starter sagasta15

    (@sagasta15)

    Ok. I have gotten to resolve it. Using this code:

    function set_posts_per_page_for_towns_cpt( $query ) {
    if ( is_shop() || is_woocommerce() || is_product_category() || is_product_tag() ) {
    $query->set( ‘posts_per_page’, ‘9’ );
    }
    }
    add_action( ‘pre_get_posts’, ‘set_posts_per_page_for_towns_cpt’ );

    Thank you anyway!

Viewing 1 replies (of 1 total)
  • The topic ‘Products per page’ is closed to new replies.