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