usces_filter_option_cart / フィルターフック

usces_get_cart_rows() で出力される商品オプションの表示を書き換る

説明

usces_get_cart_rows() で出力される商品オプションの表示を書き換えます。

使い方

add_filter( 'usces_filter_option_cart',  'my_filter_option_cart', 10, 2 );
function my_filter_option_cart( $optstr, $options ) {
    //処理
    return $optstr;
}

パラメータ

$optstr
(HTML文字列)商品詳細画面で選択されたオプション情報
$options
(配列)商品オプション情報

用例

ソースファイル

usc-e-shop/functions/template_func.php

関連資料

  • usces_get_cart_rows() ・・・ カートに入っている商品を取得し、カート画面用の行を表示する。