カートページの次へボタンを購入金額5000円以上で表示し、達していない場合は注意書きを出そうと思い、下記のページを参考にしたのですが、5000円以下でも購入できてしまいます。
https://www.welcart.com/community/forums/topic/%E8%B3%BC%E5%85%A5%E6%9C%80%E4%BD%8E%E9%87%91%E9%A1%8D%E3%82%92%E8%A8%AD%E5%AE%9A%E3%81%97%E3%81%9F%E3%81%84
コードは下記のように記載しました。
————————————
<?php else : ?>
<?php _e(‘There are no items in your cart.’,’usces’); ?>
<?php endif; ?>
<?php
$num = $this->get_total_price();
if ($num >= 5000) : ?>
<?php usces_get_cart_button(); ?>
<?php else : ?>
<font color=”red”> 当サイトでのお買い物の決済は、5000円以上で可能になります。</font>
<?php endif; ?>
</form>
<!– .footer_explanation –>
————————————
間違いがありましたらご指摘をお願い致します。