I want to display translation menu with no flags and no titles. Something like this:
EN | IT
When i click on "EN" the URL goes to english version and when i click on "IT" goes to italian version.
I try everithing, but no solution.
I want to display translation menu with no flags and no titles. Something like this:
EN | IT
When i click on "EN" the URL goes to english version and when i click on "IT" goes to italian version.
I try everithing, but no solution.
On
If you want on mobile screen size or on desktop show the only one flag use this code
<?php
if (qtranxf_getLanguage() == 'ro') {
echo the_widget('qTranslateXWidget', array('type' => 'image', 'hide-title' => true) );
print '<style> .qtranxs_image_ro{display:none;}</style>';
} elseif (qtranxf_getLanguage() == 'ru') {
echo the_widget('qTranslateXWidget', array('type' => 'image', 'hide-title' => true) );
print '<style>.qtranxs_image_ru{display:none;}</style>';
}
?>
You can use qtrans_getLanguage() functions.
Target specific language in the theme template:
Different menus for different languages