• Resolved Ozan Ozdincer

    (@ozzychigurh)


    i setup a custom radio billing field from functions.php before start using booster, below the code. There was no problem so far. But last booster update, it’s displaying the label instead of radio options name.

    function custom_override_checkout_fields($fields){
    $fields['billing_options']=array(
    'label'=>__('Options Label','woocommerce'),
    'required'=>true,
    'clear'=>false,
    'type'=>'radio',
    'options'=>array('option1'=>'Option1','option2'=>'Option2'),
    'priority'=>120
    );

    It’s displaying:

    Options Label
    o Options Label
    o Options Label

    Must be:

    Options Label
    o Option1
    o Option2

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support David G

    (@gravid7)

    Hi @ozzychigurh

    Apologies for the delay. If possible please try to upgrade to the latest version. I have checked and similar code is working properly from our demo. This might be some CSS conflict from theme CSS.

    Let us know if still not working.

    Plugin Support David G

    (@gravid7)

    Hi @ozzychigurh

    I haven’t heard back from you, so I believe the issue has been resolved.
    I’m marking this topic complete, please feel free to open a new thread for any further queries.

    Thread Starter Ozan Ozdincer

    (@ozzychigurh)

    Hi, i removed the codes and made it from Booster, thanks.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘woocommerce_billing_fields radio options problem’ is closed to new replies.