VaLeXaR
Forum Replies Created
-
Take a screenshot of the English version. I find it difficult to translate from Swedish. Which delivery method do you use?
Forum: Plugins
In reply to: [WP Multilang - Translation and Multilingual Plugin] Language switcherIn edit menu screen in list of items for adding to menu exist item ‘Language switcher’.
Forum: Plugins
In reply to: [WP Multilang - Translation and Multilingual Plugin] translations not savedCan You contact me on Slack? I will try to help You. https://make.wordpress.org/chat/
Forum: Plugins
In reply to: [WP Multilang - Translation and Multilingual Plugin] Woocommerce currencyYou can use filter “option_$option_name”.
As hardcode:add_filter( 'option_woocommerce_currency', function($value){ switch(wpm_get_language()) { case 'en': $value = 'USD'; break; case 'uk': $value = 'UAH'; break; } return $value; } );Although this question does not entirely apply to WP Multilang.
You need to use full post link with domain.
As example:<a href="<?php echo wpm_translate_url(get_the_permalink(99));?>" class="btn-outline"><i class="fa fa-chevron-right"></i><?php _e( 'Contact', 'mytheme'); ?></a>Can You show me your languages settings? https://goo.gl/w8eJx4
Find me in Slack searrch https://goo.gl/iwuGzr
Forum: Plugins
In reply to: [WP Multilang - Translation and Multilingual Plugin] Language switcherThis is php code and it must be in php tags <?php //code ?>
Forum: Plugins
In reply to: [WP Multilang - Translation and Multilingual Plugin] Language switcherThe code You need to add to template files. header.php, footer.php Not in ‘functions.php’.
Your site is unavailable.
I find it difficult to answer your question. I have never encountered such a problem. Can you provide access to your site? We can contact in Slack https://make.wordpress.org/chat/
Hi @wieserdk
I can not give an correct answer because I do not know where and how you store the data.Hi @webkreativ
All built-in shipping methods are translated. If You need to translate another method You need to know as the method saving its data in a database. Some plugins need to write a PHP code for integration.@zavr2008
In the basic version, I will not increase the number of supported plug-ins. Support for many plugins takes a lot of time and effort.The site’s language depends on the url. Do you want to use different languages on one url?