我需要帮助在我的代码中添加“if”异常,以便仅当“$customtab.description”中的数据在模块中完成时才会在页面上显示“按钮”。并非所有项目都已完成,并且该按钮随处显示,但我希望仅在数据完成时才显示。
<div id="custom-tab-{$customtab.id_tab|escape:'htmlall':'UTF-8'}" class="tab-pane fade in revealOnScroll animated fadeInUp">{$customtab.description nofilter}</div>
{hook h='displayAfterProductThumbs' product=$product}
<button onclick="iframetrailer()" id="buttoniframe">Fullscreen</button>
</div>
我想请求帮助添加“if”,以便“按钮”不会显示在未完成“$customtab.description”的项目页面上。
我的代码如下所示:
<div id="custom-tab-{$customtab.id_tab|escape:'htmlall':'UTF-8'}" class="tab-pane fade in revealOnScroll animated fadeInUp">{$customtab.description nofilter}</div>
{hook h='displayAfterProductThumbs' product=$product}
<button onclick="iframetrailer()" id="buttoniframe">Fullscreen</button>
</div>
{if !empty({$customtab.description)}
<button onclick="iframetrailer()" id="buttoniframe">Fullscreen</button>
<style>
button {
display: none}
</style>{/if}
无论表是否有数据,该按钮都是禁用的