George Botsev
Forum Replies Created
-
Hello,
Can you please check if you have “Translate by WPML” selected in WPML > Theme and plugin localization?
Also make sure that the string is registered and translated.
You might want to temporary enable “Automatically register strings” from WPML > String translation, and then display the page where the issue occurs so that the string is being registered (if not registered already).
As a final tip, I would recommend you to open a new ticket in wpml.org support forum, where me or any of my colleagues may take an in-depth look at this issue.Please let me know of your progress.
Hello, this ticket is not active now for some time.
Have you able to resolve your issue? Have you opened a new ticket in WPML?
Let me know if I can close this ticket or if you need assistance.Yes, the second part – resource files will be addressed in WPML 3.3
However for wlwmanifest.xml and xmlrpc.php the things are different because they are handled in a different manner and it may not be possible to handle them safely at this time, so it might go to a future version.
Forum: Plugins
In reply to: [WPML Multilingual & Multicurrency for WooCommerce] Checkout with paypalI am going to close this thread due to inactivity.
The feature that you requested is added for consideration for future versions.I am glad that it works for you as well.
Please don’t hesitate to notify us when you have any other issues.
I am marking this ticket as resolved.Closing this due to inactivity.
If you still have the problem, you can always open a new ticket with the required information here or in the wpml.org forum where we can help you resolve the issue.Hello, this issue should be fixed in latest WooCommerce Multilingual 3.7.1
Please let me know if the issue persists.
For now I am marking this ticket as resolved.Our developers just released an updated version 3.7.1 that includes this fix.
Thank you for reporting the issue.Oh I see the issue now. It seems like a typo for the function.
It should read url_string_name in /wp-content/plugins/woocommerce-multilingual/inc/wc-strings.class.php on line 202I have talked with our developers and a fix is on the way.
@roganoff than you for reporting this issue.
Can you please provide more information? Which versions of WPML you are using? Are you using WPML 3.2.7?Can you please provide more information?
What is the error that you receive?
Have you enabled debug in WordPress?
You can enable debugging in WordPress by going to wp-config.php and using this code:// Enable WP_DEBUG mode define('WP_DEBUG', true); // Enable Debug logging to the /wp-content/debug.log file define('WP_DEBUG_LOG', true); // Disable display of errors and warnings define('WP_DEBUG_DISPLAY', false); @ini_set('display_errors',0); // Use dev versions of core JS and CSS files (only needed if you are modifying these core files) define('SCRIPT_DEBUG', true);Also don’t forget to remove any instance where WP_DEBUG is false.
Many times the error is because of low memory assigned to WordPress. Be sure to have at least 128mb of memory dedicated to WordPress.
You can set this via wp-config.php by this code:
define('WP_MEMORY_LIMIT', '128M');I visited your site and it is working. From what I can see, you are using WPML 3.2.2. Have you tested to first upgrade WPML to its latest version?
Hello, I visited your site and I am unable to reproduce the issue that you are mentioning.
For me – every time in the cart when I add a product I have only one item – not two.
Thank you for escalating the issue to our forum at wpml.org.
Our supporter will contact you there to debug the problem further.Hello, this issue should be resolved in the latest beta versions of WooCommerce Multilingual, and it will be included in the official release as well.
You can test the beta version from your Account > Downloads in wpml.orgSo to update you about these issues.
They should be all resolved respectfully in the new WooCommerce Multilingual and the upcoming WPML versions.Our developer provided a quick fix for this issue – it will be included in the next version, but if this annoys you – you can go to the file woocommerce-multilingual/woocommerce_wpml.class.php
and in the function: documentation_links
changefunction documentation_links(){ global $post, $pagenow; $get_post_type = get_post_type($post->ID);to:
function documentation_links(){ global $post, $pagenow; if( is_null( $post ) ) return; $get_post_type = get_post_type($post->ID);