Themeforest theme Explore offers very good options. One is in the theme settings to select in a WPML Language selector to show in header:
Language Switcher On Header Top Show/Hide
header.php
if(has_action('wpml_add_language_selector')) {
$show_laguage_switcher = Slzexploore::get_option('slz-language-switcher');
if($show_laguage_switcher == '1'){
echo '<div class="wpml-language">';
do_action('wpml_add_language_selector');
echo '</div>';
}
}
Now, I want simply to replace with the qTranslateX shortcode, as a function in the child theme. Any ideas? Any help