get the qTranslate-X current language in WP SIMILE Timeline plugin
-
Hi,
I got an error when I tried to use this code in WP SIMILE Timeline to get the current language:qtranxf_init_language(); qtranxf_getLanguage() == 'fr'? $locale = 'fr': $locale = 'en';
the error message:
PHP Fatal error: Call to undefined function wp_redirect() in /wp-content/plugins/qtranslate-x/qtranslate_core.php on line 81, referer: https://domain.url/fr/activitesTo fix it, I changed the code in qtranslate-x/qtranslate_core.php (line80):
if (function_exists('wp_redirect')) { wp_redirect($target); } else{ header('Location: '.$target); }
working perfectly after this!
- The topic ‘get the qTranslate-X current language in WP SIMILE Timeline plugin’ is closed to new replies.