- Posts: 2
COMMUNITY FORUM
[SOLVED] Category filter in category.php
- Panagiotis Mantis
-
Topic Author
- Offline
- New Member
Less
More
11 years 6 months ago - 11 years 6 months ago #119150
by Panagiotis Mantis
[SOLVED] Category filter in category.php was created by Panagiotis Mantis
Hi, i'm trying to add category auto-filter in category.php.
In first case result is category ID's (but I want to show category names).
In second case it shows me nothing.
Thanks in advance
In first case result is category ID's (but I want to show category names).
<?php $categories = $this->params->get('categories');
foreach($categories as $category) : ?>
<li class="button"><a href="#" data-filter=".<?php echo $category; ?>"><?php echo $category; ?></a></li>
<?php endforeach; ?>
In second case it shows me nothing.
<?php $categories = $this->params->get('categories');
foreach($categories as $category) : ?>
<li class="button"><a href="#" data-filter=".<?php echo $category->name; ?>"><?php echo $category->name; ?></a></li>
<?php endforeach; ?>
Thanks in advance
Please Log in or Create an account to join the conversation.
- Krikor Boghossian
-
- Offline
- Platinum Member
Less
More
- Posts: 15920
11 years 6 months ago #119151
by Krikor Boghossian
Replied by Krikor Boghossian on topic [SOLVED] Category filter in category.php
Hello Panagiotis,
I think you need to use this categories subcategies to use the filtering.
Something like this will do the trick
You can always use var_dump($this->subCategories) to see which other attributes you can use.
I think you need to use this categories subcategies to use the filtering.
Something like this will do the trick
<ul>
<?php foreach($this->subCategories as $key=>$subCategory): ?>
<li class="button"><a href="#" data-filter=".<?php echo $subCategory->name; ?>"><?php echo $subCategory->name; ?></a></li>
<?php endforeach; ?>
</ul>
You can always use var_dump($this->subCategories) to see which other attributes you can use.
Please Log in or Create an account to join the conversation.
- Panagiotis Mantis
-
Topic Author
- Offline
- New Member
Less
More
- Posts: 2
11 years 6 months ago #119152
by Panagiotis Mantis
Replied by Panagiotis Mantis on topic [SOLVED] Category filter in category.php
Thank you very mych! That works perfectly ;)
Please Log in or Create an account to join the conversation.
- Krikor Boghossian
-
- Offline
- Platinum Member
Less
More
- Posts: 15920
11 years 6 months ago #119153
by Krikor Boghossian
Replied by Krikor Boghossian on topic Re: [SOLVED] Category filter in category.php
You 're welcome :)
Please Log in or Create an account to join the conversation.