我在woo电子商务结帐页面中有一些自定义字段,我希望用户输入金额。之后,应将输入的金额添加到购物车中并由用户收取费用,我在这里被困在该怎么做的位置。
我进行了很多搜索,这是田野的形象。
我希望将此数量字段数据添加到购物车中并向用户收费。
自定义字段的代码
woocommerce_form_field('amount', array(
'type' => 'text',
'name' =>'amount',
'required' =>true,
'class' => array(
'woocommerce-input-wrapper form-row form-row-first validate-required flex-row-item'
) ,
'label' => __('Send Amount') ,
'placeholder' => __('Send Amount') ,
) ,
$checkout->get_value('amount'));