Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • what about this

    <!--:en--><td> <a title="Bibles" href="https://www.bibliadeldiscipulo.net/libros/">Bibles</a></td><!--:-->
    
    <!--:es--><td> <a title="Bibles" href="https://www.bibliadeldiscipulo.net/es/libros/">Biblias</a></td><!--:-->

    Perhaps this helps

    <?php if(qtrans_getLanguage() == “en”) : ?>
    <div>
    <h3>First Column</h3>
    </div>
    <div>
    <h3>Second Column</h3>
    </div>
    <div>
    <h3>Third Column</h3>
    </div>
    <?php endif ?>

    <?php if(qtrans_getLanguage() == “in”) : ?>
    <!– First Column –>
    <div>
    <h3>Kolom Pertama</h3>
    </div>
    <!– Second Column –>
    <div>
    <h3>Kolom Kedua</h3>
    </div>
    <!– Third Column –>
    <div>
    <h3>Kolom Ketiga</h3>
    </div>
    <?php endif ?>

    If you happened to find logo and home link problem, go to this https://mustbuzz.net/web-design/how-to-create-multiple-language-website-in-wordpress/ for further tutorial using qTranslate.

    It is easy, I am just making French and English Website at https://www.belard-fertil.fr using qTranslate plugin too.

    Go to Settings > Languange and select Edit at France section.
    Choose fr.png for france
    name languange code: fr
    Name: Fran?ais
    Locale: fr_FR
    Leave date format and time format empty, I found them buggy when I post something.
    dont forget to add “Désolé, cet article est seulement disponible en %LANG:, : et %.” in the Not Available Message.

    and Save Changes.

    Go to Appearance > Widgets.
    Drop qTranslate Languange Chooser to sidebar at right. Select the dropdown arrow and select Text and Image.

    Thats all

    if you happened found error at logo or home links button, just go to https://mustbuzz.net/web-design/how-to-create-multiple-language-website-in-wordpress/

    for further tutorial.

    I am using the qTranslate plugin and I modify it myself like this

    First, try to add this code

    add_filter(‘home_url’, ‘qtrans_convertURL’);

    in the qtranslate_hooks.php at add_filter area.

    Don’t forget to always adding this code whenever you update the plugin, because the update will replace the old file.

    OR mywordpress/themes/template/function.php or framework.php

    and set your logo link like this
    Second option if above doesn’t work.

    Copy the home WordPress file and make it a new template as frontpage.

    Open the home.php in dreamweaver, save as another file and don’t forget to add this code to make it as a new template for frontpage.

    Add this code before <?php get_header(); ?>

    /**
    * Frontpage Template
    *
    Template Name: Frontpage Page
    */

    Just leave the rest code as it is and upload this file in your WordPress directory.

    Create a new page, name it home, select Frontpage template in the Page Attributes.
    Go to Settings > Reading > and select home as your frontpage.
    Now you have a translated front page.
    – See more at: https://mustbuzz.net/web-design/how-to-create-multiple-language-website-in-wordpress/#sthash.esoFSSrJ.dpuf

Viewing 4 replies - 1 through 4 (of 4 total)