Re: [解決済み] 「あと○○○円で送料無料!」を表示できますか?
フォーラム › テンプレート(テーマ) › [解決済み] 「あと○○○円で送料無料!」を表示できますか? › Re: [解決済み] 「あと○○○円で送料無料!」を表示できますか?
2011年9月13日 9:34 AM
#62778
lukka
参加者
表題の”タグ”有り難う御座いました。
ただ、只、不具合があり、自分なりに書き換えました。
送料無料金額を超えると-○○○で金額表示され、超えない場合は何も表示なしです。
<?php
$num = ( $this->options )- ( $this->get_total_price() );
if( 0 > $num ):
?>
あと、<?php usces_crform($num, true, false); ?>で送料無料です!
<?php endif; ?>
これを( 0 > $num ):→( 0 < $num ):
<?php
$num = ( $this->options )- ( $this->get_total_price() );
if( 0 < $num ):
?>
あと、<?php usces_crform($num, true, false); ?>で送料無料です!
<?php endif; ?>
正解かどうか分かりませんが、思いどうりの表示(¥と,)ができました。