• Hi All,

    I have two WP sites with the same styling. One is in English, the other is in French.

    I have a button (.gif) on the English site that is visible in the header (I added some HTML code to “Header.php”). It works and links to the French site without any problems.

    However, when I try to reverse the process, the English link on the French site is not visible. I’ve examined the code and the source path to the English button (.gif) and all looks well. Wondering why I can’t get my English link to show on the French site.

    Code: portion of “Header.php” – English site

    <body <?php body_class(); ?>>
    <div class="page-wrapper">
    	<?php do_action( 'before' ); ?>
    	<header id="header" role="banner">
    		<div class="container clearfix">
    
    <a class="french_link" href="http://www.carilynehebert.ca/fr/index.php" target="_blank"><img style="border:0;" src="http://www.carilynehebert.ca/wp-content/uploads/2014/05/francais.gif" alt="Francais_Symbol" width="110" height="24"</a>

    Code: portion of “Header.php” – French site

    <body <?php body_class(); ?>>
    <div class="page-wrapper">
    	<?php do_action( 'before' ); ?>
    	<header id="header" role="banner">
    		<div class="container clearfix">
    
    <a class="english_link" href="http://www.carilynehebert.ca/index.php" target="_blank"><img style="border:0;" src="http://www.carilynehebert.ca/wp-content/uploads/2014/05/English_Link.gif" alt="English_Symbol" width="110" height="24"</a>

    Hope you can help.

    Thanks,

    cmeister

  • The topic ‘Mirror WP site in French language -> Need to make link to English site visible’ is closed to new replies.