- Status
- Resolved
- Reported for
- WPML Multilingual CMS 3.2
- Resolved in
- 3.2.1
Overview of the issue
Add the following code in the footer.php file:
do_action( 'wpml_add_language_selector' );
It should display the language switcher, but nothing is shown instead.
Workaround
- Open this file:
sitepress-multilingual-cms/inc/template-functions.php - Move to line 989: you must see the following code:
function wpml_add_language_selector_filter() { global $sitepress; return $sitepress->get_language_selector(); } - Replace
return $sitepress->get_language_selector();withecho $sitepress->get_language_selector(); - Save the file