我想檢查產品是否有特定標籤。如果是這樣,我想顯示一些文字。以下是我所做的一些示例。有用。唯一的問題是我得到錯誤。檢查產品是否在Prestashop中有特定標籤1.6.1.4
{if in_array('rent', $product->tags.1)}
<img id="turnKeyimg" alt="TurnKey Rental Option" src="{$tpl_uri}img/key.png"/>
<h3>TurnKey Rental Option</h3>
<p>Also available for immediate rental.<br />Request a quote today</p>
{/if}
錯誤日誌有這樣的條目:
警告:in_array()預計參數2爲陣列,在/cache/smarty/compile/94/4d/52/944d5284e871d0de7a0c6b84ebb2089ad579ed8b.file空給出.product.tpl.php在高速緩存行330
線330看起來是這樣的:
<?php if (in_array('rent',$_smarty_tpl->tpl_vars['product']->value->tags[1])) {?>
<img id="turnKeyimg" alt="TurnKey Rental Option"
src="<?php echo $_smarty_tpl->tpl_vars['tpl_uri']->value;
?>
我做了什麼錯了導致這些錯誤?
這個用smarty怎麼看?我不能使用<?php。 我試過了:{if(is_array($ _ smarty_tpl-> tpl_vars ['product'] - > value-> tags [1])&& in_array('rent',$ _ smarty_tpl-> tpl_vars ['product'] - > value - > tags [1]))}但該檢查不再有效。我查看了一個標籤出租的產品,我想要顯示的文本沒有顯示。 – N13Design
@ N13Design我不是Smarty模板的專家,但是您是否嘗試了這種方法,[https://pastebin.com/ZBy4eNJe](https://pastebin.com/ZBy4eNJe)? –
Prestashop裏面有些東西不喜歡。它打破了頁面。 – N13Design