Number of Columns in Category

  • Buddha Apps & Mobile
  • Topic Author
  • Offline
  • New Member
  • New Member
More
10 years 4 months ago #53596 by Buddha Apps & Mobile
Number of Columns in Category was created by Buddha Apps & Mobile
I have 5 products in a category but only three are showing up. All are published. I do not want to hack the core files, please explain how to override the template settings and have more than three columns appear.

Attachments:

Please Log in or Create an account to join the conversation.

  • Tuan Pham Ngoc
  • Away
  • Administrator
  • Administrator
More
10 years 4 months ago #53846 by Tuan Pham Ngoc
Replied by Tuan Pham Ngoc on topic Number of Columns in Category
Hi

we limit number columns because we think that if we display too many plans, there won't be enough space. If you want to display 5 plans, you can try to edit code :

1. Open the file components/com_osmembership/views/common/pricingtable_plans.php

2. Find the code

$numberColumns = min($numberColumns, 4);

3. Change it to:

$numberColumns = 5;

And it should work well

Regards,

Tuan

Please Log in or Create an account to join the conversation.