• Resolved Qilin

    (@qilin2000)


    Since the update to version 2.0, there have been many problems, such as the following:
    1) I don’t think multiple billing addresses is a good improvement since most people only use one when shopping.
    2) The “add new billing address” button on the my account page sometimes does not show up.
    3) The billing address saved on the my account page cannot be displayed during checkout and needs to be filled in again. This problem has never appeared in the previous version.

    We need a new version, thanks.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Matt Harrison

    (@matt-h-1)

    Sorry to hear your are having issues with the update. We run this plugin on many sites and haven’t had any issues with billing addresses so far with our setup.

    If you do not want multiple billing addresses on your site, this is an option to turn off in the admin.
    Go to WooCommerce -> Settings and then towards the bottom of the General tab is a checkbox for “Enable billing address book” which you can turn off.

    Thread Starter Qilin

    (@qilin2000)

    Hello Matt,

    Thanks for your kind reply, I did’t know there were settings for this plugin, I turned off “Enable billing address book” as you told, my problems were resolved, that’s great!

    But there is still a little problem, in the billing address section, there is a new field called “Address nickname (optional)”, how can I remove or hide it? Are there any filters to help me remove it?

    Best regards,
    Qilin

    Thread Starter Qilin

    (@qilin2000)

    The little problem is resolved.

    add_filter( 'woocommerce_billing_fields', 'custom_override_billing_fields' );
    function custom_override_billing_fields( $fields ) {
    	unset($fields['billing_address_nickname']);
        return $fields;
    }
    • This reply was modified 3 years, 1 month ago by Qilin.
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Billing address problems’ is closed to new replies.