Re: [解決済み] 「あと○○○円で送料無料!」を表示できますか?
フォーラム › テンプレート(テーマ) › [解決済み] 「あと○○○円で送料無料!」を表示できますか? › Re: [解決済み] 「あと○○○円で送料無料!」を表示できますか?
2011年9月13日 12:09 AM
#62777
![](https://www.welcart.com/images/avatar/avatar-keymaster-80.png)
キーマスター
金額を表示するテンプレートタグは、usces_crform( $float, $symbol_pre = true, $symbol_post = true, $out = '', $seperator_flag = true )
です。
あと、送料無料条件をクリアした場合は表示しないように下記のようにすると良いかと思います。
<?php
$num = ( $this->options['postage_privilege'] )- ( $this->get_total_price() );
if( 0 > $num ):
?>
あと、<?php usces_crform($num, true, false); ?>で送料無料です!
<?php endif; ?>