How to set a custom title per language?

I am running Qtranslate for my website.

I am very impressed by this plugin.
Now my only problem is that I cannot set a custom title and description for my homepage per language.
I can only setup one line for the title in the general settings for my website.

Read More

I have installed Qtranslate META where I can set a custom title and description per page, but my only problem is the homepage.

Any help would be realy appreciated how to fix this!

Thanks

Related posts

Leave a Reply

2 comments

  1. You may wanna try something like this :

      <?php
            $lang = qtrans_getLanguage();
            if ($lang=="en") {
                  echo 'ENGLISH TEXT HERE';
            } else if ($lang=="fr") {
                  echo 'FRENCH TEXT HERE';
            } 
      ?>