説明
WCEX DLSeller が導入されているとき、継続課金商品で利用できる支払方法の選択肢を変更できます。
使い方
add_filter( 'usces_filter_the_continue_payment_method', 'my_filter_the_continue_payment_method' ); function my_filter_the_continue_payment_method( $continue_payment_method ) { //処理 return $continue_payment_method; }
パラメータ
- $continue_payment_method
- (配列)継続課金で利用できる支払方法。array( ‘acting_remise_card’, ‘acting_paypal_ec’ ) 。
用例
ソースファイル
usc-e-shop/functions/template_func.php
関連資料
- usces_the_payment_method() ・・・ 購入時に選択できる支払方法をラジオボタン形式で表示
- usces_fiter_the_payment_method ・・・ usces_the_payment_method() で出力される支払方法の選択肢を変更する
- usces_fiter_the_payment_method_checked ・・・ 支払方法を選択状態にするかどうか
- usces_fiter_the_payment_method_explanation ・・・ 支払方法の説明書きを変更する
- usces_filter_the_payment_method_choices ・・・ usces_the_payment_method() で出力される、支払方法選択ブロックを変更する