Theme localization - marinko

Discussion in 'Cloriato WordPress Theme' started by marinko, Oct 23, 2012.

  1. marinko

    marinko New Member

    Joined:
    Jul 6, 2012
    Messages:
    1
    Likes Received:
    0
    I need a bit of help with localization of Cloriato theme, I don't know how to locate the file(s) in order to change "Category archives" and "Older posts" "newer posts" and "by admin" to something more convenient for Croatian Language.

    You can see them problem here http://hho.hr/category/izjave/

    Thank you very much for your support and congrats of a new beautiful forum :)
     
  2. Harmeet

    Harmeet Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    360
    Likes Received:
    15
    Hello,

    You can directly change the text from the "blog.php" and "single.php" file to your language. It will show in your website. Here is the code where you have to change the language

    Code:
    <ul class="post_meta">
              <li class="posted_by"><span>By</span>&nbsp;
                <?php the_author_posts_link(); ?>
              </li>
              <li class="post_date">&nbsp;
                <?php the_time('M-j-Y') ?>
              </li>
              <li class="post_category">&nbsp;
                <?php the_category(', '); ?>
              </li>
              <li class="post_comment">&nbsp;
                <?php comments_popup_link('0 Comments.', '1 Comment.', '% Comments.'); ?>
              </li>
            </ul>
    Thanks.
     

Share This Page