George Botsev
Forum Replies Created
-
In the next release of WooCommerce Multilingual – 3.9.4 our developers will add two new filters.
‘wcml_rounded_price’ ( Arguments: price, currency ) Returned price after applying currency rounding rules
‘wcml_currencies_without_cents’ ( Arguments: currencies array ) Array of currencies without cents
So you will be able to filter the currencies that are without cents.
Our developers told me that CZK currency has cents and we will not add it to the array, however thanks to the filters that we are going to add – you can do it from the next release by yourself.Hello,
I have added your request as a feature request to our developers and they will consider it.
Thank you for reporting about the CZK currency, I also escalated this to our developers for consideration.
When I have more information, I will get back to you here.Forum: Plugins
In reply to: [Forum Badges] Please support BuddyPress and bbPressCould you elaborate a little bit more please?
This is a plugin that adds a shortcode and it should work wherever you place it.Forum: Plugins
In reply to: [WPML Multilingual & Multicurrency for WooCommerce] MulticurrencyI tested the same scenario that you reported, and I seem to not be able to reproduce it.
Please open a new ticket in our forum at wpml.org so that we can investigate furtherForum: Reviews
In reply to: [WPML Multilingual & Multicurrency for WooCommerce] Very good pluginHello, and thank you for your positive review.
I just wanted to let you know that language switcher is actually part of WPML plugin and not part of WooCommerce Multilingual.
Also, I am sure that you will be happy with our latest beta version of WPML 3.6 where we have improved significantly the language switcher options.
You can give it a try if you wish, but please remember because it is still a beta version – it is recommended to not use it in a production environment. The download as usual is available at wpml.org in Account > Downloads > CMS BetaForum: Plugins
In reply to: [WPML Multilingual & Multicurrency for WooCommerce] MulticurrencyIn order for me to debug this properly, I would like to ask you to open a new ticket in our forum at wpml.org – here we cannot share credentials and data securely and I cannot test and investigate the issue that you have reported to me.
In the meantime, I will try to get a copy of Revslider and try to test the issue.Hello, the issue reported here should be resolved.
I am going to mark this ticket now as resolved.
If your issue still persist, please open a new ticket in our forum at wpml.org.Hello, the issue reported here should be resolved.
I am going to mark this ticket now as resolved.
If your issue still persist, please open a new ticket in our forum at wpml.org.I will mark this ticket as resolved since there is nothing more to do right now here.
If you have already escalated the issue to our wpml.org forum, please provide a link here so that other people can follow.Hello, the issue reported here should be resolved.
I am going to mark this ticket now as resolved.
If your issue still persist, please open a new ticket in our forum at wpml.org.Hello, the issue reported here should be resolved.
I am going to mark this ticket now as resolved.
If your issue still persist, please open a new ticket in our forum at wpml.org.Forum: Plugins
In reply to: [WPML Multilingual & Multicurrency for WooCommerce] MulticurrencyWe just released a version of WooCommerce Multilingual that fixes the issue with the currency switcher not being visible on the cart/checkout page.
Please give it a go and let me know if you have any troubles.Please remember to backup your database first before you proceed! You can use a plugin for this if you like (example: http://wordpress.org/plugins/duplicator/)
Forum: Plugins
In reply to: [WPML Multilingual & Multicurrency for WooCommerce] MulticurrencyHello, would you mind to provide more details about the js error that you have encountered?
I tested on a clean environment with the steps that you have provided here, but I cannot reproduce the same issue.
Maybe you have another plugin that is interfering, or perhaps your theme?
Can you test in a minimal setup -> only WPML and WCML+Woo plugins and with a default theme. If the issue persists in that way – please try and either record a screencast or provide us with the full steps on how to reproduce.
Please also be sure to use the latest versions of all of our plugins.About your other question – we are aware of that bug, and it will be fixed in the next release of WooCommerce Multilingual.
iF I understand your setup correctly, you have a static string for the “Features”.
Perhaps you can also use our api for that string as well:
https://wpml.org/wpml-hook/wpml_register_single_string/
do_action( 'wpml_register_single_string', string $context, string $name, string $value )
– to register the string and then you can translate it in WPML > String Translation (you can include this near the place where you want to show the value, or in separate file – it does not matter).
https://wpml.org/wpml-hook/wpml_translate_single_string/
apply_filters( 'wpml_translate_single_string', string $original_value, string $domain, string $name, string $language_code )
– to translate it -> you call this at the place where you want to display the valueYou can see sample code on how to use it in the urls that I have provided.
As far as I understand you have a feature meta in the product, and that is not being displayed properly for you.
Did you try to use WPML api to get the translated value? – https://wpml.org/documentation/support/wpml-coding-api/wpml-hooks-reference/
Maybe getting the translated product may help – something like:$order_language = get_post_meta( $order->id, 'wpml_language', true ); $tr_product_id = apply_filters( 'translate_object_id', $product_id, get_post_type( $product_id ), false, $order_language );I am afraid that without more information, I cannot be of better help.
If you wish, you can always create a new ticket in our forum at wpml.org so that we can help you better and try and debug your setup.