如何在smarty中发货?

时间:2015-12-18 11:31:58

标签: smarty

有可能做出聪明的条件吗? 在.tpl文件中,我只得到{cart_product_price}来打印当前的cartprice。 例如:

if ({cart_product_price} > 350){
echo 'shipping free';
}

1 个答案:

答案 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