有可能做出聪明的条件吗? 在.tpl文件中,我只得到{cart_product_price}来打印当前的cartprice。 例如:
if ({cart_product_price} > 350){
echo 'shipping free';
}
答案 0 :(得分:0)
当然可以。检查一下:
{if $cart_product_price > 350}
something...
{else}
something else...
{/if}
或者
{if ( $cart_product_price < 0 or $cart_product_price > 350 ) }
...
{/if}
在Smarty文档页面上查看更多信息: http://www.smarty.net/docs/en/language.function.if.tpl