説明
支払方法の下に表示される説明書きを変更できます。
使い方
add_filter( 'usces_fiter_the_payment_method_explanation', 'my_filter_the_payment_method_explanation', 10, 3 ); function my_filter_the_payment_method_explanation( $explanation, $payments, $value ) { //処理 return $explanation; }
パラメータ
- $explanation
- (文字列)基本設定>支払方法の説明。
- $payments
- (配列)支払方法情報。usces_get_system_option( ‘usces_payment_method’, ‘sort’ ) の戻り値。
- $value
- (文字列)あらかじめチェックを入れておきたい支払方法の名称。
用例
ソースファイル
usc-e-shop/functions/template_func.php
関連資料
- usces_the_payment_method() ・・・ 購入時に選択できる支払方法をラジオボタン形式で表示
- usces_fiter_the_payment_method ・・・ usces_the_payment_method() で出力される支払方法の選択肢を変更する
- usces_filter_the_continue_payment_method ・・・ 継続課金商品で利用できる支払方法の選択肢を変更する
- usces_fiter_the_payment_method_checked ・・・ 支払方法を選択状態にするかどうか
- usces_filter_the_payment_method_choices ・・・ usces_the_payment_method() で出力される、支払方法選択ブロックを変更する