2020.2.13
Welcartで業務パック割引、等と同様「キャンペーン割引」という文言を変えたいという場合に使用します。キャンペーンではなく、「割引」という名称に変更する場合は以下のようになります。
これで顧客から見える画面でも、管理画面でも文言の変更が可能です。
//キャンペーン割引を割引に文言変更
add_filter('usces_confirm_discount_label', 'my_confirm_discount_label', 10);
function my_confirm_discount_label($label){
$label = '割引'."\n";
return $label;
}
add_filter('usces_filter_disnount_label', 'my_filter_disnount_label', 10);
function my_filter_disnount_labe($label){
$label = '割引'."\n";
return $label;
}
以上となります。