Hello @dickprovoosthotmailcom,
You can use 3rd party plugin for translation purpose. Please refer the below url-
https://ww.wp.xz.cn/plugins/loco-translate/
I hope the above was helpful.
Kind regards,
Manoj
Hi, I try change the “Read more” link and it’s done but not everywhere.
In the serach list site everithing is OK, but in the Main Page I still see a “Read More” instead of “Przeczytaj więcej”. How can I change it.
Please add this extra CSS code in Customizer -> General Settings -> Additional CSS :
a.read-more.link{
visibility: hidden;
position: relative;
}
a.read-more.link::after {
visibility: visible;
position: absolute;
font-size:18px!important;
content: “Lees meer”!important;
}
Above CSS from Gerdineke doesn’t work for the Mesmerize-theme. At least not for me.
This CSS-code worked fine instead:
.read-more {
visibility: hidden;
}
.read-more:before {
content: 'Lees meer';
visibility:visible;
}
I found a real solution for that. The problem was in file wp-content/plugins/mesmerize-companion/theme-data/mesmerize/functions.php
\Mesmerize\Companion::echoMod(‘latest_news_read_more’, ‘Read more’);
When I changed “Read more” to “Czytaj dalej” the text was replace on front page and on the blog page with post list as well.
When I use a Gerdineke CSS code solution the text change only in front page. In the blog page text was hidden.
I think this is a mesmerize bug and guys who sell the PRO template will change that code in to next version.