Translation of "Search" and "Read more" in multisite installation?

Discussion in 'BlackBird WordPress Theme' started by lyubo, Jun 1, 2013.

Thread Status:
Not open for further replies.
  1. lyubo

    lyubo Guest

    Joined:
    May 15, 2013
    Messages:
    67
    Likes Received:
    1
    Hello,
    I saw your thread how I can translate "Search" and "Read more" in the searchform.php and front-page.php. My issue is that I have a multisite installation of the Black Bird Pro theme in three languages - each site for one language. If I make code changes in the theme, this results at all multisite pages. How can I resolve this?
    Thank you!
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
  3. lyubo

    lyubo Guest

    Joined:
    May 15, 2013
    Messages:
    67
    Likes Received:
    1
    Hello,
    I replaced the search form with the language flags from "MultiLanguage Switcher Plugin" in the header.php:
    (I replaced at lines 119-121:
    <div class="top-search">
    <?php get_search_form(); ?>
    </div>
    with:
    <?php if (function_exists("the_msls")) the_msls(); ?>
    Can you say me how I can center the flags in the height of the menu bar and put those at the right side.
    Please see the image bellow. Hier is the link to the site: http://www.limousine-klagenfurt.com/wordpress/en/
    Thank you!

    1.JPG
     
  4. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Hello,

    Add flag code inside any class
    like:
    <div class="flag"><?php if (function_exists("the_msls")) the_msls(); ?></div>


    After that Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    .flag {
    float: right;
    margin-right: 10px;
    margin-top: 16px;}
     
  5. lyubo

    lyubo Guest

    Joined:
    May 15, 2013
    Messages:
    67
    Likes Received:
    1
    Thank you, perfect!
     
Thread Status:
Not open for further replies.

Share This Page