Viewing 1 replies (of 1 total)
  • Thread Starter Shivani-Rana

    (@shivani-rana)

    hi,
    I resolved this issue

    You have to just Add this line in header.php:-
    $currentLang = qtrans_getLanguage();

    After this add some line like this:-

    if( is_front_page() ){

    echo ‘<h1><a href=”‘;

    if($currentLang==’fr’)
    echo home_url().’/fr/’;
    else
    echo home_url();

    echo ‘”><img src=”‘ . $logo_attachment . ‘” alt=”‘ . $alt_text . ‘”/></h1>’;

    }else{

    echo ‘<a href=”‘;

    if($currentLang==’fr’)
    echo home_url().’/fr/’;
    else
    echo home_url();

    echo ‘”><img src=”‘ . $logo_attachment . ‘” alt=”‘ . $alt_text . ‘”/>’;

    }

    ?>

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