如何在WooCommerce结帐页面的一行中显示3个字段

时间:2019-01-16 10:32:24

标签: wordpress woocommerce

我正在自定义WooCommerce,但我想在一行中显示3个字段,但是我尝试了很多但没有成功。我已经粘贴了当前字段的图像

screenshot

我要在一行中显示发送金额,接收金额和提供者

这是有关自定义字段的代码

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

0 个答案:

没有答案