我正在自定义WooCommerce,但我想在一行中显示3个字段,但是我尝试了很多但没有成功。我已经粘贴了当前字段的图像
我要在一行中显示发送金额,接收金额和提供者
这是有关自定义字段的代码
woocommerce_form_field('receive', array(
'type' => 'text',
'required' =>true,
'class' => array(
'woocommerce-input-wrapper form-row form-row-first validate-required'
) ,
'label' => __('Receive Amount') ,
'placeholder' => __('Receive Amount') ,
) ,
$checkout->get_value('receive'));