How to Change the WooCommerce Number of Products Per Page

This article created with the aim to discuss the customization possibilities in WooCommerce, beginning with the method to Change the WooCommerce Number of Products Per Page.

One of the most significant benefits of WooCommerce is the range of customizable choices. Users can configure their website’s appearance in virtually any way, which is outstanding for personalizing the product pages. In a WooCommerce shop page, the precise number of pages is 16, which splits into 4Rows*4Columns.

You might be looking to configure the number of items to be shown on the shop page if you have a ton of products in your WooCommerce store. This could be because of the site’s picture sizes, widgets, or other interface factors.

Reasons to Change the WooCommerce Number of Products Per Page

There is always a reason to Change the WooCommerce Number of Products Per Page. So, if you are still not clear about the main motive to do so.

We have listed some of the possible reason to Change the WooCommerce Number of Products Per Page:

  • If you want to maximize your revenue by showing more detail about each product, or if you want to change your page’s overall view.
  • It makes it more comfortable for your customers to browse through your items and figure out what they’re looking for, particularly if you have many products to show.
  • To boost the accessibility of your website. This may be because you have various items on your website, and different icons or widgets don’t come up correctly.

4 Methods to Change the WooCommerce Number of Products Per Page

For WooCommerce users, there are some simple solutions to this problem.

Method 1: Using the Theme Customizer

The best way to Change the WooCommerce Number of Products Per Page is to adjust the theme settings. Just make sure that your theme allows you to do that.

After you make sure that the theme allows you to Change the WooCommerce Number of Products Per Page. Just follow the given steps:

  • Go to WordPress Dashboard
  • Navigate to Apperance >> Customize
  • Click on it, and then the WordPress theme customizer engine should open.
How to Change the WooCommerce Number of Products Per Page
  • Click WooCommerce in the left sidebar
  • Now, Navigate to the Product Catalog. Search for Products per row
  • Then you can set to the desired number number of items per tab. The number of rows per page can be also customized.

Some themes don’t allow you to change per post row. So, If you do not find this in the customization tool in your theme, the theme does not let you use this feature.

Method 2: Use Third-Party Theme Settings

If you select additional third-party themes, you can or may not have the default WooCommerce settings mentioned above. Some themes have their own settings to adjust the number of products per tab.

For example, the OceanWP theme presents this setting under WooCommerce >> Archives >> Shop Posts Per Page setting, as explained below.

Not just that, these third-party themes offer various customization options.

Method 3: Use Code Snippet

If your theme neither displays the default WooCommerce setting or doesn’t offers a custom setting to change the number of products, you can use a straightforward snippet of code and add it to your activated website theme’s Theme Features (functions.php) file.

Copy the code snippet below and paste it at the end of the.php function.

// Change the Number of WooCommerce Products Displayed Per Page
add_filter( 'loop_shop_per_page', 'lw_loop_shop_per_page', 30 );

function lw_loop_shop_per_page( $products ) {
 $products = 16;
 return $products;
}

Replace the value 16 with the value of your choice in the code snippet earlier.

If the above snippet doesn’t work for you, you can use the following code snippet.

// Change the Number of WooCommerce Products Displayed Per Page
add_filter( 'loop_shop_per_page', create_function( '$products', 'return 16;' ), 30 );

Replace the value 16 with the value of your choice in the code snippet earlier.

Changing the number of columns for each page

You may select a simple snippet of code to append to the Theme Functions (functions.php) file of your enabled website theme if your thread does not share the regular WooCommerce configuration.

// Change the Number of Columns Displayed Per Page
add_filter( 'loop_shop_columns', 'lw_loop_shop_columns' );

function lw_loop_shop_columns( $columns ) {
$columns = 8;
return $columns;
}

Replace the value 8 with the value of your choice in the code snippet earlier.

Method 4: Using WordPress Plugin

We got a more comfortable solution for the average users who are not fond of coding. We recommend Woo Shortcodes Kit plugin in order to Change the WooCommerce Number of Products Per Page.

Woo Shortcodes Kit

How to Change the WooCommerce Number of Products Per Page

This plugin offers over 60 features and shortcuts for adapting multiple perspectives of your website such as menus, stores, user accounts, Access, restrictions, checkouts, and so on. Download and Activate the plugin from here.

Here are the steps you need to follow:

  • Download and Activate the plugin
  • Go to WordPress Dashboard
  • Navigate to ‘Settings’
  • Scroll down to locate the “CUSTOMIZE OR BUILD YOUR SHOP PAGE” settings. Click on it to unveil additional sub-settings.
  • Switch to “Enable Products per page Manager” from the settings
4 Methods to Change the WooCommerce Number of Products Per Page
  • Now, Press on the “Show Advanced Options” on the corresponding setting’s bottom-right edge to reveal different locations.
  • Determine the number of products per page in the provided text field.

In the above screenshot, the default number of pages is 12. you can customize it easily.

Video tutorial

Sum Up

Congratulations, you have finally learned How to Change the WooCommerce Number of Products Per Page. Moreover, some of the visitors also asked us about How to Embed a Vimeo Video in WordPress. Do check the dedicated article on this.

If you enjoyed this post, subscribe to our WordPress video tutorials on YouTube Channel. Remember to follow us on Twitter and Pinterest too.

We accept any suggestions from the visitors because it always motivates us to improve. Feel free to comment below.

Leave a Comment