こんにちは。
まずDevelopment Version にアップグレードしていただく必要がございます。
そして以下のフィルターを、ご利用中のテーマ内のfunctions.php に追記してください。
フリガナフィールドの削除
add_filter( 'usces_filter_furigana_form', 'my_filter_furigana', 10, 3);
add_filter( 'usces_filter_furigana_confirm_customer', 'my_filter_furigana', 10, 3);
add_filter( 'usces_filter_furigana_confirm_delivery', 'my_filter_furigana', 10, 3);
function my_filter_furigana( $furigana, $type, $values ){
return '';
}
郵便番号フィールドの説明書
add_filter( 'usces_filter_after_zipcode', 'my_filter_after_zipcode', 10, 2);
function my_filter_after_zipcode( $str, $applyform ){
return '郵便番号サンプル';
}
市区群町村フィールドの説明書
add_filter( 'usces_filter_after_address1', 'my_filter_after_address1', 10, 2);
function my_filter_after_address1( $str, $applyform ){
return '市区群町村サンプル';
}
番地フィールドの説明書
add_filter( 'usces_filter_after_address2', 'my_filter_after_address2', 10, 2);
function my_filter_after_address2( $str, $applyform ){
return '番地サンプル';
}
マンション・ビル名フィールドの説明書
add_filter( 'usces_filter_after_address3', 'my_filter_after_address3', 10, 2);
function my_filter_after_address3( $str, $applyform ){
return 'マンション・ビル名サンプル';
}
電話番号フィールドの説明書
add_filter( 'usces_filter_after_tel', 'my_filter_after_tel', 10, 2);
function my_filter_after_tel( $str, $applyform ){
return '電話番号サンプル';
}
FAX番号フィールドの説明書
add_filter( 'usces_filter_after_fax', 'my_filter_after_fax', 10, 2);
function my_filter_after_fax( $str, $applyform ){
return 'FAX番号サンプル';
}