0

在我的 XCart 4.4.2 安装中,我有几个主要类别的产品,每个类别都包含几个子类别。在主页上,我想列出每个类别中的子类别,但在此代码中从 welcome.tpl 访问子类别时遇到问题:

{foreach from=$categories_menu_list item=c name=categories}
  <a href="home.php?cat={$c.categoryid}" title="{$c.category|escape}">
    <li>
        <img src="{$c.image_path|amp}" alt="{$c.category|escape}"/>
        <strong>{$c.category}</strong><br/>

        <!-- list subcategories here-->
        {php}
          $parentid = $c.categoryid;

          $categoryNames = func_query_column("SELECT category FROM $sql_tbl[categories] WHERE parentid = " . $parentid);
          print_r($categoryNames);
        {/php}
    </li>
  </a>
{/foreach}

任何人都可以帮助我生成子类别列表所需的 PHP/SMARTY 代码吗?谢谢!

4

3 回答 3

2

最好在 php 脚本中定义一个子类别数组,而不是在模板中定义。我可以为您的任务提供以下解决方案:

包含/common.php 的补丁

@@ -90,6 +90,14 @@
         // Get categories menu data
         if (!empty($categories)) {
             $smarty->assign('categories_menu_list', $categories);
+
+            if (!isset($cat) || 0 == intval($cat)) {
+                $extended_categories = func_get_categories_list(0, true, true, 1);
+
+                if (!empty($extended_categories)) {
+                    $smarty->assign('extended_categories_list', $extended_categories);
+                }
+            }
         }

         if ($active_modules['Manufacturers']) {

(标有 + 的行应添加到代码中)

皮肤/你的皮肤/客户/主/welcome.tpl

{foreach from=$categories_menu_list item=c}
<a href="home.php?cat={$c.categoryid}" title="{$c.category|escape}">
  <li>
  <img src="{$c.image_path|amp}" alt="{$c.category|escape}"/>
          <strong>{$c.category}</strong><br/>
    <!-- list subcategories here-->
    {foreach from=$extended_categories_list item=ec}
      {if $ec.parentid eq $c.categoryid}{$ec.category|escape}<br />{/if}
    {/foreach}
  </li>
</a>
{/foreach}
于 2011-08-23T17:44:09.027 回答
1

经典答案对我来说不太适用。这是我使用的:

    // Get categories menu data
    if (!empty($categories)) {
        $smarty->assign('categories_menu_list', $categories);

        foreach($categories as $c){
            $ext_cats = func_get_categories_list($c['categoryid'], true, true, 1);
            if(!empty($ext_cats)){
                $extended_categories[$c['categoryid']] = $ext_cats;
            }
            $ext_cats = "";
        }

        if (!empty($extended_categories)) {
            $smarty->assign('extended_categories_list', $extended_categories);
        }   
    }

这将遍历每个类别并获取所有子类别。

于 2011-10-11T16:00:59.903 回答
0

我知道这是一个旧线程,但是经典的代码对我来说效果很好,稍作修改(以使子类别链接)。我该怎么做才能让 3 级以上的子类别(子子类别)也显示出来?

抱歉发错地方了。为了弥补这一点,我确实对经典的代码做了一个补充。原始代码只是将子类别列为文本/图像,下面是我用来摆脱图片的内容,但使子类别可点击链接

    <ul>
    {foreach from=$categories_menu_list item=c}
    <li><a href="home.php?cat={$c.categoryid}" title="{$c.category|escape}"><strong>{$c.category}</strong></a></li>

    <!-- list subcategories here-->
    {foreach from=$extended_categories_list item=ec}
    {if $ec.parentid eq $c.categoryid}<li><a href="home.php?cat={$ec.categoryid}" style="font-size:10px;">{$ec.category|escape}</a></li>{/if}
    {/foreach}

    {/foreach}
    </ul>
于 2015-07-15T13:24:09.913 回答