• Hello,

    Can anyone help me how i can set default Greek language and how i can put the flag at the top of my website so i can switch the languages when i want??

    I am running 4.8.3

Viewing 1 replies (of 1 total)
  • You can put the widget of qtranslate in a header area from: > Appeareance > Widgets. If you haven’t any sidebar in your header to put widget, you can make with code. Add the widget function in the header:

    the_widget( ‘qTranslateXWidget’, ‘title=’ );

    And modify the default parameters if you want flags and no want the dropdown. Add a filter in the functions.php archive of theme:

    add_filter( ‘qtranslate_type’, ‘theme_function’ );
    function theme_function( $type ) {
    $type = ‘both’;
    return $type;
    }

Viewing 1 replies (of 1 total)
  • The topic ‘Set flag’ is closed to new replies.