• Resolved marzmuso

    (@marzmuso)


    Hi,

    I have set vendor store page to display 6 products but it only shows 5 on the first page and is paginated showing the 6th product on a separate page ?
    I dont understand why this is happening..

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author WC Lovers

    (@wclovers)

    Hi,

    I have set vendor store page to display 6 products but it only shows 5 on the first page

    – Well, this setting is available at individual vendor level.

    Please check what is set at that particular vendor? – https://ibb.co/djjZch1

    Thank You

    Thread Starter marzmuso

    (@marzmuso)

    Hi,

    Thanks, I must’ve missed that setting.
    Product count is working as intended now.

    PS! Is it possible to over ride this feature and set products global count for all vendors ?

    Plugin Author WC Lovers

    (@wclovers)

    HI,

    Sure, but require this custom code –

    add_filter( 'wcfmmp_store_ppp', function( $post_per_page ) {
    	$post_per_page = '50';
    	return $post_per_page;
    }, 50 );

    Thank You

    Thread Starter marzmuso

    (@marzmuso)

    Thank you ! 🙂

    Plugin Author WC Lovers

    (@wclovers)

    You are welcome 🙂

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Store Product Per Page Count Incorrect’ is closed to new replies.