SCC customizer strings not translatable
-
Hi @sumapress,
My client is using qTranslate XT to translate the content of their multilingual site.
Today I added your wonderful plugin but found that the SCC Customizer strings where not translatable.I had a look at your plugin PHP code and noticed that you start running your plugin directly instead of on the init event.
This prevents any translation plugin to do its magic.This simple change solved the problem:
function run_simple_cookie_control() { $plugin = new Simple_Cookie_Control(); $plugin->run(); } add_action('init', 'run_simple_cookie_control'); //run_simple_cookie_control();
Could you please put this in your next release?
Thanks.
Cheers,
Benny
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘SCC customizer strings not translatable’ is closed to new replies.