mklusak on "[Plugin: Polylang] Wpml-config.xml strings skipped when numbers...
Hi, thank for replying! Well, yes. There is approx. 20 "admin-texts" items in XML, but in Polylang admin / String translation tab are listed only some of them - those with any string value. Those with...
View Articlemklusak on "[Plugin: Polylang] String translation - small textareas, maybe?"
Hi! Maybe the problem is that those strings are loaded from wpml-config.xml ... then it is automatic process I suppose, and I can't affect those parameter. Or can I?
View Articleindiellie on "[Plugin: Polylang] Bloglovin' problem"
Hello, Since I installed the Polylang plugin (version 1.5.5.), I noticed a problem with my blog's page on Bloglovin: all the new posts are not showing, as if I didn't published them. The blog I have...
View ArticleChouby on "[Plugin: Polylang] Wpml-config.xml strings skipped when numbers...
I successfully translated numeric values. The only case which does not work is when the value is 0.
View ArticleChouby on "[Plugin: Polylang] String translation - small textareas, maybe?"
Sure you can. With php only (as wpml-config.xml does not include such option). The code snippet below transforms all inputs to textarea. add_filter('pll_get_strings', 'pll_get_strings', 20); function...
View ArticleChouby on "[Plugin: Polylang] Bloglovin' problem"
Hi! Polylang modifies the RSS link. http://indiellie.com/it/feed/ for Italian posts and http://indiellie.com/feed/ for English posts as you decided to remove the language code for English
View Articleindiellie on "[Plugin: Polylang] Bloglovin' problem"
Thank you for your answer. I did change the English link when I realized it was http://indiellie.com/en/feed and I thought that could be the problem. It didn't change anything, and that was why I asked...
View ArticleChouby on "How to explicitly set Polylang to not translate Posts"
There is no such option.
View ArticleChouby on "Polylang & Headway Themes - issue with Single Post layout"
No sorry. I won't do that. That would require too much time.
View Articledavidmcc3 on "Polylang & Headway Themes - issue with Single Post layout"
Hi. Okay ... what can you do to help?
View Articledavidmcc3 on "Polylang & Headway Themes - issue with Single Post layout"
... Actually, would full admin access to the development site help?
View Articlemklusak on "[Plugin: Polylang] Wpml-config.xml strings skipped when numbers...
Well, I mean those numerical "strings" are not displayed on that tab. So I can't even to try to translate them. XML content: http://imgur.com/OswWzzZ String translation tab: http://imgur.com/RaW74GV...
View Articlemklusak on "[Plugin: Polylang] String translation - small textareas, maybe?"
It looks promising! Thank you!
View Articlepb1uk on "Polylang breaks after moving site to live domain"
Hello, I've been developing my site on a subdomain of my own website e.g. http://test.my-domain.com however when i've moved this over to the my clients live domain, which is different polylang breaks...
View ArticleChouby on "[Plugin: Polylang] Wpml-config.xml strings skipped when numbers...
You may be right. Maybe I could not reproduce because in the plugin I used for tests, numeric inputs are kept as strings. Did you make the test if removing the is_string() condition solves your problem?
View Articlemklusak on "[Plugin: Polylang] Wpml-config.xml strings skipped when numbers...
Yes, removing is_string() from this conditions did the job - those strings appeared on String translation tab. But there are probably some front-end issues, because even when it was correctly...
View ArticleChouby on "[Plugin: Polylang] Wpml-config.xml strings skipped when numbers...
The same in translate_strings_recursive() maybe?
View Articlemklusak on "[Plugin: Polylang] Wpml-config.xml strings skipped when numbers...
Yes, it works, but ... I don't want to hardcode those changes to your plugin and disable its later updates :( Have those is_string() checks any special meaning? Will it "break" when removed? But there...
View ArticleChouby on "[Plugin: Polylang] Wpml-config.xml strings skipped when numbers...
1. I will replace the test if (is_string($value) && $strings[$name] == 1) by if ((is_numeric($value) || is_string($value)) && $strings[$name] == 1) to definitely allow translating...
View Articlemklusak on "[Plugin: Polylang] Wpml-config.xml strings skipped when numbers...
1. Yay! Thank you :) 2. Yes! It's my default choice everytime (language by directory), and I know I was setting it this time too. But now I see the "language by content" is set. Setting language from...
View Article