子テーマの functions.php を使用して、WooCommerce のチェックアウト エリアにカスタム フィールドを追加しています。いくつかのテキスト入力を追加しましたが、テキスト入力の 2 つの別個の「セット」を選択/アクティブ化する 2 つのラジオ ボタンを追加する必要があります。
基本的に、顧客がボタン A: 支払い情報を入力するか、ボタン B: を選択して PO 番号を入力できるようにする方法が必要です。選択されていないボタンがデータベースに書き込まれず、チェックアウト中にエラーが発生したり停止したりしないようにする必要があります。
製品ページに移動して製品を追加すると、チェックアウト エリアに移動して、私がすでに行ったことを確認できます。コードは以下のとおりです。
add_action('woocommerce_after_order_notes', 'custom_checkout_field');
function custom_checkout_field( $checkout ) {
echo '<div id="payment_info"><h3>'.__('Payment Information').'</h3>';
woocommerce_form_field( 'credit_card_name', array(
'type' => 'text',
'class' => array('form-row-wide'),
'label' => __('Name on Credit Card'),
'required' => true,
'placeholder' => __(''),
), $checkout->get_value( 'credit_card_name' ));
woocommerce_form_field( 'card_type', array(
'type' => 'select',
'class' => array(''),
'label' => __('Card Type'),
'required' => true,
'placeholder' => __(''),
'options' => array(
'American Express' => __('American Express'),
'Discover' => __('Discover'),
'Mastercard' => __('Mastercard'),
'Visa' => __('Visa')
)), $checkout->get_value( 'card_type' ));
woocommerce_form_field( 'card_number', array(
'type' => 'text',
'class' => array(''),
'label' => __('Card Number'),
'required' => true,
'placeholder' => __('XXXX-XXXX-XXXX-XXXX'),
), $checkout->get_value( 'card_number' ));
woocommerce_form_field( 'card_expiration_month', array(
'type' => 'select',
'class' => array('form-row-first'),
'label' => __('Expiration Month'),
'required' => true,
'placeholder' => __('- Select Month -'),
'options' => array(
'1' => __('1'),
'2' => __('2'),
'3' => __('3'),
'4' => __('4'),
'5' => __('5'),
'6' => __('6'),
'7' => __('7'),
'8' => __('8'),
'9' => __('9'),
'10' => __('10'),
'11' => __('11'),
'12' => __('12')
)), $checkout->get_value( 'card_expiration_month' ));
woocommerce_form_field( 'card_expiration_year', array(
'type' => 'select',
'class' => array('form-row-last'),
'label' => __('Expiration Year'),
'required' => true,
'placeholder' => __('- Select Year -'),
'options' => array(
'2013' => __('2013'),
'2014' => __('2014'),
'2015' => __('2015'),
'2016' => __('2016'),
'2017' => __('2017'),
'2018' => __('2018'),
'2019' => __('2019'),
'2020' => __('2020')
)), $checkout->get_value( 'card_expiration_year' ));
woocommerce_form_field( 'security_code', array(
'type' => 'text',
'class' => array('form-row-first'),
'label' => __('Security Code'),
'required' => true,
'placeholder' => __(''),
), $checkout->get_value( 'security_code' ));
woocommerce_form_field( 'order_number', array(
'type' => 'text',
'class' => array('form-row-wide'),
'label' => __('PO Number (if required)'),
'placeholder' => __(''),
), $checkout->get_value( 'order_number' ));
echo '</div>';
したがって、次のようにする必要があります。
支払情報
[x] クレジット カード
名 [ __ アクティブな入力領域 __ ]
カード番号 [ __ アクティブな入力領域 __ ] など。
[ _ ] PO 番号 番号
を入力してください [ __ 非アクティブな入力エリア __ ]