WelCartお客様情報入力欄の例の文言変更

みなさんこんにちは。茨城県でWordpressをきわめる旅を突き進んでいるレターズです。

さてさて、WordpresでE-commerceを実現する非常に便利なWelCart。その中でお客様情報を入力する欄の例の表記を変えたいということがあると思います。デフォルトだと横浜市とかとかとなっているあれですね。

そんなときはfunctions.phpに下記追加して変更しまできます。

郵便番号


// wel cart overriding
add_filter("usces_filter_after_zipcode", "my_filter_after_zipcode", 10, 2);
function my_filter_after_zipcode($str, $applyform)
{
	return "100-1000";
}

市区群町村

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番号';
}

項目を削除する(例ふりがな)

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 '';
}

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です