Woocommerce中特定付款网关的结帐附加字段

时间:2018-09-04 11:09:17

标签: php wordpress woocommerce payment-gateway checkout

我有一个自定义的Woocommerce付款网关,选择付款后,我需要在结帐栏上添加其他字段。

基本上,当用户单击自定义支付网关时,将出现“选择”字段,他们必须从选择字段中进行选择。

我附上了屏幕截图,以更好地表达我需要做的事情的想法。不幸的是,我在文档中找不到有关此信息。

this is the image

1 个答案:

答案 0 :(得分:5)

以下代码将在结帐页面的网关描述中添加自定义文本输入字段(在此示例中为BACS付款网关)

// BACS payement gateway description: Append custom select field
add_filter( 'woocommerce_gateway_description', 'gateway_bacs_custom_fields', 20, 2 );
function gateway_bacs_custom_fields( $description, $payment_id ){
    //
    if( 'bacs' === $payment_id ){
        ob_start(); // Start buffering

        echo '<div  class="bacs-fields" style="padding:10px 0;">';

        woocommerce_form_field( 'field_slug', array(
            'type'          => 'select',
            'label'         => __("Fill in this field", "woocommerce"),
            'class'         => array('form-row-wide'),
            'required'      => false,
            'options'       => array(
                ''          => __("Select something", "woocommerce"),
                'choice-1'  => __("Choice one", "woocommerce"),
                'choice-2'  => __("Choice two", "woocommerce"),
            ),
        ), '');

        echo '<div>';

        $description .= ob_get_clean(); // Append buffered content
    }
    return $description;
}

代码进入活动子主题(或活动主题)的functions.php文件中。经过测试并可以正常工作。

enter image description here

  

相关:Validate and save additional checkout field for specific payment gateway in Woocommerce


  

完整方法,验证字段,将其保存为订单自定义元数据,并在订单和电子邮件通知中显示:

     

Save and display specific payment gateway additional field everywhere in Woocommerce