Keyword

[SOLVED] Category filter in category.php

  • Panagiotis Mantis
  • Panagiotis Mantis's Avatar Topic Author
  • Offline
  • New Member
More
10 years 11 months ago - 10 years 11 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).
<?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
  • Krikor Boghossian's Avatar
  • Offline
  • Platinum Member
More
10 years 11 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
<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.

JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)

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

  • Panagiotis Mantis
  • Panagiotis Mantis's Avatar Topic Author
  • Offline
  • New Member
More
10 years 11 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
  • Krikor Boghossian's Avatar
  • Offline
  • Platinum Member
More
10 years 11 months ago #119153 by Krikor Boghossian
Replied by Krikor Boghossian on topic Re: [SOLVED] Category filter in category.php
You 're welcome :)

JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)

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


Powered by Kunena Forum