帮助进行 tpl 编辑

发布于 2024-10-30 23:58:18 字数 1691 浏览 1 评论 0原文

我不知道我做了什么,但突然我的代码没有按预期运行。

我的菜单未正确显示,因为我缺少 UL 结束标签。

我玩了所附的代码,但什么也没有。附件是生成的代码:

这就是我想要的
这就是我得到的

缺少的 ul 位于第 71 行。

请帮助我。

PHP / TPL 代码:

<nav id="categories"> 
<ul class="dropdown dropdown-horizontal"> 
{checkActionsTpl location="tpl_widget_categories_start"} 
{section name=thecat loop=$cat_array} 
{if $lastspacer eq ""}{assign var=lastspacer value=$cat_array[thecat].spacercount}{/if} 
{if $cat_array[thecat].auto_id neq 0} 

{if $cat_array[thecat].spacercount < $submit_lastspacer}</ul></li>{/if} 
{if $cat_array[thecat].spacercount > $submit_lastspacer}<ul>{/if} 

    <li{if $cat_array[thecat].principlecat neq 0} class="dir"{/if}> 
    <a href="{if $pagename eq "upcoming" || $groupview eq "upcoming"} 
                    {$URL_queuedcategory, $cat_array[thecat].safename} 
                {else} 
                    {$URL_maincategory, $cat_array[thecat].safename|replace:' ':'%20'} 
                {/if} 
                {php} 
    global $URLMethod; 
    if ($URLMethod==2) print "/"; 
    {/php}">{$cat_array[thecat].name}</a> 
    {if $cat_array[thecat].principlecat eq 0}</li>{else}{/if}{assign var=submit_lastspacer value=$cat_array[thecat].spacercount}{/if} 
{/section} 
{checkActionsTpl location="tpl_widget_categories_end"} 
{if $cat_array[thecat].spacercount < $submit_lastspacer}{$lastspacer|repeat_count:'</ul></li>'}{/if} 
        </ul></li> 
</ul> 
</nav> 

I don't know what I did but suddendly my code isn't acting as it should.

My menu is not showing correctly because I am missing a UL closing tag.

I played with the attatched code but nothing. Attatched is the generated code:

This is what I want
and this is what I get

The missing ul is on line 71.

Please help me.

PHP / TPL Code:

<nav id="categories"> 
<ul class="dropdown dropdown-horizontal"> 
{checkActionsTpl location="tpl_widget_categories_start"} 
{section name=thecat loop=$cat_array} 
{if $lastspacer eq ""}{assign var=lastspacer value=$cat_array[thecat].spacercount}{/if} 
{if $cat_array[thecat].auto_id neq 0} 

{if $cat_array[thecat].spacercount < $submit_lastspacer}</ul></li>{/if} 
{if $cat_array[thecat].spacercount > $submit_lastspacer}<ul>{/if} 

    <li{if $cat_array[thecat].principlecat neq 0} class="dir"{/if}> 
    <a href="{if $pagename eq "upcoming" || $groupview eq "upcoming"} 
                    {$URL_queuedcategory, $cat_array[thecat].safename} 
                {else} 
                    {$URL_maincategory, $cat_array[thecat].safename|replace:' ':'%20'} 
                {/if} 
                {php} 
    global $URLMethod; 
    if ($URLMethod==2) print "/"; 
    {/php}">{$cat_array[thecat].name}</a> 
    {if $cat_array[thecat].principlecat eq 0}</li>{else}{/if}{assign var=submit_lastspacer value=$cat_array[thecat].spacercount}{/if} 
{/section} 
{checkActionsTpl location="tpl_widget_categories_end"} 
{if $cat_array[thecat].spacercount < $submit_lastspacer}{$lastspacer|repeat_count:'</ul></li>'}{/if} 
        </ul></li> 
</ul> 
</nav> 

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

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

发布评论

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

评论(1

如梦亦如幻 2024-11-06 23:58:18

只看代码,我认为你

</ul></li>

在三个地方搞错了。你想要

</li></ul>

Just looking at the code, I think you have

</ul></li>

the wrong way round in three places. You want

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