Hall
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce Address Book] German TranslationHi,
If you would like, you can request to become an editor of the German translation.
You can make the request and that request can be approved by the WordPress German editors.
https://make.www.ads-software.com/polyglots/handbook/rosetta/roles-and-capabilities/pte-request/#pte-request-by-a-translatorWhat you can do to use it locally right now is go to the translate page: https://translate.www.ads-software.com/projects/wp-plugins/woo-address-book/stable/de/default/
At the bottom by the Export link, select “Only matching the filter” and “Machine Object Message Catalog (.mo)” and then click Export to download the .mo file.
Then save this .mo file to your WordPress site at wp-content/languages/plugins/woo-address-book-de_DE.mo
That will let you use it before it is approved on translate.www.ads-software.comForum: Plugins
In reply to: [WooCommerce Address Book] Double addresses when editHi,
I’ve never seen that happen before. It might be related to specific settings or another plugin.
Here are some questions to help reproduce the issue.
What country is the address set to?
What language is your WordPress install set to?
Does this happen when editing the primary address or only a non-primary address?
If it happens on both, does it still happen with the Address Book plugin disabled?
Any other plugins installed that affect addresses or checkout fields?Sorry, this support section is for the WooCommerce Address Book plugin.
You might be better off asking in the support section for the Australia Post WooCommerce Extension plugin https://www.ads-software.com/support/plugin/australian-post-woocommerce-extension/
Forum: Plugins
In reply to: [WooCommerce Address Book] Translations IssueWhat I mean is we no longer have a languages folder at all in current version of the plugin.
The new recommended way to translate plugins on www.ads-software.com is to submit the translations on https://translate.www.ads-software.com/
Once the translations are accepted on there by the www.ads-software.com translation team the language packs are released.
And, if I’m understanding correctly how it works, once they are on there your WordPress install with automatically download them and use them for whatever language your install is set to.
You can read more about it in the handbook: https://make.www.ads-software.com/polyglots/handbook/tools/glotpress-translate-wordpress-org/
Forum: Plugins
In reply to: [WooCommerce Address Book] Country/State issuesHi,
We have just released a new version of the plugin which should fix the issue that you were having here.
Give it a try and let us know if you are still having any issues with the plugin.
Forum: Plugins
In reply to: [WooCommerce Address Book] Problem with multiple addressesHi,
We have just released a new version which fixes the issue of only being allowed to enter a certain amount of addresses.
Let us know if you still have any issues with the plugin after updating.
Forum: Plugins
In reply to: [WooCommerce Address Book] Translations IssueThank you for your interest in translating our Plugin. We no longer use the .pot file and have since removed the file from our plugin. We now use the new way of translating WordPress plugins at https://translate.www.ads-software.com/
Feel free to contribute a translation at https://translate.www.ads-software.com/projects/wp-plugins/woo-address-book/
Forum: Plugins
In reply to: [WooCommerce Address Book] Default address behaviorThe latest version should fix this partly.
Now if you’ve checked out with only a billing address and go to the address book the Shipping Address is displayed with the message “You have not set up this type of address yet.” which you can edit. Please let us know if you are still not seeing this.
Currently the Address Book does not support the Billing Address in any way, only the Shipping Address. It would need to be expanded to support Billing Addresses as well to save it there.
The suggestion to enabled “Ship to a different address?” by default if the shipping address is different from billing is a good one. It hasn’t been an issue for us as we have that enabled by default on all our sites that we manage.
The big case that this plugin doesn’t support is if “Force shipping to the customer billing address” is selected as in that case the Address Book plugin does nothing as it doesn’t support billing addresses.
Forum: Plugins
In reply to: [WooCommerce Address Book] not button add address (Hi,
We have released a new version which fixed many issues with adding addresses.
Please give it a try and let us know if you are still having an issue.Forum: Plugins
In reply to: [WooCommerce Address Book] GET SELECTED SHIP ADDRESS IDIf you are looking to get the name of the address used during checkout, then that is posted from the form in the
$_POST['address_book']
variable.Forum: Plugins
In reply to: [WooCommerce Address Book] LocalizationHi, thanks for your interest in translating.
We have corrected the issues to prepare it for localization so you can now translate it at https://translate.www.ads-software.com/projects/wp-plugins/woo-address-book
Hi,
I’m not exactly sure what you mean. Do you have custom fields that adds an additional address fields to the shipping profile?
The edit screen for the additional addresses shows the same fields as when editing the default address at https://mysite/my-account/edit-address/shipping/
We have just released a new version of the plugin which does fix many bugs when editing addresses if you could try again and let us know if you are still having any issues.
Forum: Plugins
In reply to: [WooCommerce Address Book] Postcode ValidationHi,
We just released a new version which fixed many bugs with saving addresses.
We have tested and the Postcode validation works exactly the same as it does for the primary shipping address for us.
Let us know if you are still having any issues with validation.
Forum: Plugins
In reply to: [WooCommerce Address Book] Add new adresses via PHPWe actually have a script that we used to import some. Here is a version of it which I sanitized. Feel free to adapt it to your needs.
$user_id = 11; $address_name = 'shipping'; $addresses = array(); // Fill with addresses to enter. $address_names = get_user_meta( $user_id, 'wc_address_book', true ); if ( empty( $address_names ) ) { $shipping_address = get_user_meta( $user_id, 'shipping_address_1', true ); // Return just a default shipping address if no other addresses are saved. if ( empty( $shipping_address ) ) { $address_names = array( 'shipping' ); } // If we don't have a shipping address, just return an empty array. $address_names = array(); } $counter = count( $address_names ) + 1; foreach ( $addresses as $address ) { update_user_meta( $user_id, $address_name . $counter . '_first_name', $address['first_name'] ); update_user_meta( $user_id, $address_name . $counter . '_last_name', $address['last_name'] ); update_user_meta( $user_id, $address_name . $counter . '_company', $address['company'] ); update_user_meta( $user_id, $address_name . $counter . '_country', $address['country'] ); update_user_meta( $user_id, $address_name . $counter . '_address_1', $address['address_1'] ); update_user_meta( $user_id, $address_name . $counter . '_address_2', $address['address_2'] ); update_user_meta( $user_id, $address_name . $counter . '_city', $address['city'] ); update_user_meta( $user_id, $address_name . $counter . '_state', $address['state'] ); update_user_meta( $user_id, $address_name . $counter . '_postcode', $address['postcode'] ); $address_names[] = $address_name . $counter; $counter++; } update_user_meta( $user_id, 'wc_address_book', $address_names );
- This reply was modified 5 years, 11 months ago by Hall.
Forum: Plugins
In reply to: [WooCommerce Address Book] Make Country Fields RequiredHi,
We have fixed this it 1.5.2 so it follows WooCommerce’s rules for this once again.