显示某一类别的子类别

发布于 2024-09-30 11:27:34 字数 140 浏览 1 评论 0原文

我正在使用 Magento,并且尝试在无序列表中显示一个类别 (42) 中的所有子类别。我也只想显示那些处于活动状态的子类别。

我在谷歌上搜索了很多“解决方案”,但似乎没有一个对我有用。我想知道是否有人对此有明确的答案?

谢谢, 尼尔

I'm using Magento and I am trying to display all sub categories from one category (42) in an unordered list. I'd also only like to show those subcategories that are active.

I've googled lots of 'solutions', but none seem to work for me. I was wondering if anyone has a definitive answer to this?

Thanks,
Neil

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

千纸鹤 2024-10-07 11:27:34

您应该使用静态块。
像这样的东西:

<?php $_categories = $this->getCurrentChildCategories(); ?>
<ul>
<?php foreach ($_categories as $_category): ?>
<?php if($_category->getIsActive()): ?>
<li>
    <a href="<?php echo $_category->getURL() ?>" title="<?php echo $this->htmlEscape($_category->getName()) ?>"><?php echo $this->htmlEscape($_category->getName()) ?></a>
</li>
<?php endif; ?>
<?php endforeach; ?>
</ul>

You should use static block.
Somwthing like this:

<?php $_categories = $this->getCurrentChildCategories(); ?>
<ul>
<?php foreach ($_categories as $_category): ?>
<?php if($_category->getIsActive()): ?>
<li>
    <a href="<?php echo $_category->getURL() ?>" title="<?php echo $this->htmlEscape($_category->getName()) ?>"><?php echo $this->htmlEscape($_category->getName()) ?></a>
</li>
<?php endif; ?>
<?php endforeach; ?>
</ul>
好菇凉咱不稀罕他 2024-10-07 11:27:34

使用 Mage::getModel('catalog/category')->getCategories($parent, $recursionLevel, $sorted) 方法,它返回特定父类别的子类别树。 $parent 在本例中是类别 id,$recursionLevel 是选择子类别的多个级别,$sorted 仅指示是否对类别进行排序。方法调用只需要 $parent 参数。

Use Mage::getModel('catalog/category')->getCategories($parent, $recursionLevel, $sorted) method, it returns the tree of the subcategories for a particular parent category. $parent in this case is category id, $recursionLevel is a number of levels for selection subcategories, $sorted just indicates whether sort categories or not. Only $parent argument is required for the method calling.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文