Jump to content

Recommended Posts

Hi,

 

I'd like to adjust the settings of my 'products in the same category' feature.

 

I think it's currently set to show a maximum of 30, but we'd like to adjust this.

 

I've gone to Modules > Front Office > Products Category > Configure but all it gives me is the opportunity to Display the Price on the products. 

 

How can I adjust so that we show more products in this product category feature?

 

Kind regards

Tom

Edited by TomHorgans (see edit history)
Link to comment
Share on other sites

modules/productscategory/productscategory.php

 

there is a code:

	// If products tab higher than 30, slice it
				if ($sizeOfCategoryProducts > 30)
				{
					$categoryProducts = array_slice($categoryProducts, $middlePosition - 15, 30, true);
					$middlePosition = 15;
				}
  • Like 2
Link to comment
Share on other sites

  • 11 months later...

I want to show only 6 products, 3 per line 

I changed the code to 

// If products tab higher than 30, slice it
if ($sizeOfCategoryProducts > 6)
{
	$categoryProducts = array_slice($categoryProducts, $middlePosition - 3, 6, true);
	$middlePosition = 3;
}

 

and it's not working.. what is wrong?
Thanks in advance!
 
UPDATE: NO! IT's WORKING! THANKS!!
Edited by joss54 (see edit history)
Link to comment
Share on other sites

  • 1 month later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...