hexagoncircle
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Adding a new drop-down field to billing address formThanks terrytsang, but unfortunately adding the chzn_select selector in there still didn’t seem to work. Maybe I’m targeting the wrong selector?
rikardo85, I’m not totally sure how to move the form elements around. That’s a great question! I’m also wondering how to get these new custom fields to appear under the user’s account so they can change them whenever they would like. Anybody know if there’s a way to get these fields to filter into the user’s account?
Forum: Plugins
In reply to: [WooCommerce] Adding a new drop-down field to billing address formI came across this, which seems to be the solution:
$fields['billing']['billing_options'] = array( 'label' => __('Options', 'woocommerce'), 'placeholder' => _x('', 'placeholder', 'woocommerce'), 'required' => false, 'clear' => false, 'type' => 'select', 'options' => array( 'option_a' => __('option a', 'woocommerce' ), 'option_b' => __('option b', 'woocommerce' ) ) );Now I’m wondering how you can add the chosen css styles to these new options to match the other drop downs… anyone??
I am also having this problem. The shipping address is not being sent and is left blank in Paypal. The shipping address needs to be entered manually so that the person’s shipping info can be added to the printed labels. Has anyone discovered a solution to this issue?