初めてご連絡させていただきます。よろしくお願いいたします。
本プラグインを有効化したところ、決済画面に表示されないようfunctions.phpに記載した項目が表示されるようになってしまいました。
回避方法がございましたらご教示いただけますと幸いです。
以下のプログラムで住所等を非表示にしております。
add_filter( 'woocommerce_default_address_fields' , 'custom_override_default_address_fields' );
function custom_override_default_address_fields( $fields ) {
? unset($fields['address_1']);
? unset($fields['address_2']);
? unset($fields['state']);
? unset($fields['city']);
? unset($fields['country']);
? unset($fields['postcode']);
? return $fields;
}
]]>
こんにちは。
注文確認のプップアップ内のラベルが、
「請求処理 名」の様な形になっていると思うのですが、
プロ版にすればこちらの文字をカスタマイズすることが可能になるのでしょうか?
Hello.
I think the label in the order confirmation pupup should be something like
I think the label in the order confirmation popup is something like “Billing Process Name”.
Is it possible to customize this text if I use the professional version?
]]>Can I change the text on the Confirm button?
For example, using filter hooks.