You have to translate the theme to pt_PT?
Translate all the free theme and now I bought the premium I have to translate everything again?
What you have to send the language to be translated is (Romania)
I look in folders language and there is no one named RO
Color price is ok
Thanks
Hi,
I am trying to translate the theme through the WMPL plugin. So far I have managed to find out how to translate widgets, pages and post etc. But I can’t figure out how to translate the things I have on the front page. That is – for the moment – the portfolio carousel, latest blog post and icon menu. My default language is danish, so in my theme options I have written the text in danish, but now I am making a version in a different language, and I am stuck. Please help 🙂
Hmm, to do this I think you would need to create a child theme with a custom polylang function in the header, I don’t believe polylang adds an option for this and it doesn’t create a css class in the body to make this possible with css. . . Are you familiar with using a child theme and overriding the header.php file?
The function would look like this:
<?php
$currentlang = get_bloginfo('language');
if($currentlang=="en-US"):
?>
<!-- add english logo here. -->
<?php else: ?>
<!-- add german logo here. -->
<?php endif; ?>
Ben
Hi, I’m using Polylang to make the site multilingual *Login to see link
Everything works fine, just one last thing…
I need to upload a second logo for the english website, since there is german text in it.
Can you help me with that?
Maybe it is a problem with languages and some spécial characters not protected in php ? my website is in French with many “é è à” inside …
Hello/Ciao,
Here’s the updated Italian translation to latest 2.4.3 version
Ecco disponible la versione aggiornata della versione italiana 2.4.3
Best Regards / Arrivederci,
Angelo
Theme options > language settings.
Ben
It should be in the .pot file now.
You should be able to edit with the po file for your language?
Ben
Hello Ben. Some time ago i wrote you about text “Search results for” translate and you promise fix it in the next update of theme. Now i receive a new version of theme, but don’t find in language settings field rof this translate.
Hello Ben. I receive Главная » Search results for “обучение” for search. Where i can change translate for “Search results”
Hello Ben again,
meanwhile I made 2 Links in the Menue: http://screencast.com/t/VqkMR6WF2U
and in fact I don’t need any multilingual-function at all.
I’ll write roduct-description in both languages myself.
I hardly can believe that it shall not be possible to clone this page: http://screencast.com/t/7VuAD29lo
Maybe you’ll find some trick how to?
Thanks & Best Regards
Martin
You can change the title of the tab in the language settings of the theme options.
and to remove the tab h3 just use this css:
#tab-description h3 {
display:none;
}
Ben
Ok so the link meta title. Thats controlled in the po language file. I would suggest editing that and send me the translation so I can update, or just paste it here and I will update the po file with the next version.
Ben
Hey,
If you go to theme options > language settings there’s an option to change topbar cart total text.
Hope this is what you’re looking for.
Hannah
Thank you Ben 🙂
About Title of Shop Page I assumed there will be desigh-option to change colour, size and so fort…
Further Qustion:
can you please tell me how to clone the shop page to use on second language and how to link products from product-list?
Thank you in advance
Martin
Hey so theme options > language settings you can change the sale word to whatever you want.
If you want to hide it the css is:
.woocommerce span.onsale, span.onsale, .woocommerce #carouselcontainer span.onsale {
display:none;
}
As for the shop page, just open the page titled shop in your pages and change the title.
Ben
Not an easy way. It would require a plugin and some redirect work and some cookies so it didn’t show the landing page every time a user clicked the home page.
I don’t really recommend it. If your using WPML or most other plugins they already auto check which language the user is using else show the default with a menu to switch.
You might try a popup that asked the visitor when they reach your site but that can be annoying. Are you using WPML? have you asked there support for options built into the plugin?
Ben
Is there a way to create a landing page where visitors can select a language (in this case, French or English) before going to the home page?
Yeah, Theme options > language settings. You can change the wording.
Then add this css:
div.product .woocommerce-tabs ul.tabs {
display: none;
}
.woocommerce-tabs .panel h3 {
border-bottom: 0;
}
Ben