Vendor Store: Number of products per page can\\\'t be set

We're shifting our Forum based support to a more dedicated support system!

We'll be closing our Forum support from 10th June, 2020 and move to Email Support assistance.

  • If you are a WCFM premium add-ons user, contact us- here
  • Want to know more before buying our add-ons? Send Pre sale queries- here
  • If you are a WCFM free user, please open a support ticket at WordPress.org
  • For WCFM App related queries, reach us- here
From now the forum will be read-only!

Viewing 3 reply threads
  • Author
    Posts
    • #62288
      shitT
      Participant

      Hello

      I try to set the number of products on the vendor page to 9 in the admin panel. It does not work (always 10). How can I fix this? BTW, I use the standard storefront theme.

      Thanks for your answer!

      Kind Regards,
      Gilbert

    • #62491
      WCFM Forum
      Keymaster

      Hi,

      I try to set the number of products on the vendor page to 9 in the admin panel

      – This will definitely work but for newly added vendors.

      For existing vendors it’s possible to change from vendor’s setting panel or from vendor manager -> store setting

      You may also add this to your child theme’s functions.php to make this fixed overall –

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

      Thank You

    • #62556
      shitT
      Participant

      Hi

      Great answer! Thanks a lot, problem solved:)

      Kind Regards

      Gilbert

    • #62776
      WCFM Forum
      Keymaster

      You are welcome :0

Viewing 3 reply threads
  • The topic ‘Vendor Store: Number of products per page can\\\'t be set’ is closed to new replies.