usces_filter_tax_guid / フィルターフック

消費税区分を書き換える

説明

usces_guid_tax() で出力される、消費税区分のガイドを書き換えます。

使い方

add_filter( 'usces_filter_tax_guid',  'my_filter_tax_guid', 10, 2 );
function my_filter_tax_guid( $str, $tax_rate ) {
    //処理
    return $str;
}

パラメータ

$str
(文字列)デフォルトの html 文字列
$tax_rate
(数値)基本設定で指定した消費税のレート(%)

用例

消費税ガイドを出力したくない場合

add_filter( 'usces_filter_tax_guid',  'user_funtion_name', 10, 2 );
function user_funtion_name( $str, $tax_rate ) {
    return '';
}

変更履歴

  • 1.0 にて導入されました。

ソースファイル

usc-e-shop/classes/usceshop.class.php

関連資料

  • usces_guid_tax() ・・・ 「税込」か「税別」かのガイドを表示する