説明
usces_get_confirm_rows() で出力される商品オプションの表示を書き換えます。
使い方
add_filter( 'usces_filter_option_confirm', 'my_filter_option_confirm', 10, 2 ); function my_filter_option_confirm( $optstr, $options ) { //処理 return $optstr; }
パラメータ
- $optstr
- (HTML文字列)商品詳細画面で選択されたオプション情報
- $options
- (配列)商品オプション情報
用例
フック
- usces_get_confirm_rows() で出力される商品オプションの表示を書き換る
ソースファイル
usc-e-shop/functions/template_func.php
関連資料
- usces_get_confirm_rows() ・・・ カートに入っている商品を取得し、カート内容確認画面用の行を表示する。