How to localize Post Archived by and Category by

Discussion in 'ColorWay WordPress Theme' started by nexnexy, Mar 29, 2015.

  1. nexnexy

    nexnexy Guest

    Joined:
    Mar 28, 2013
    Messages:
    13
    Likes Received:
    0
    Location:
    Tokyo
    I would like to customize the following red areas to Japanese.

    1. Search
    2. Archives
    3. Delete "Posted on" and change sequence from "month date, year" to "year + 年 month date+日"
    4. Delete "by admin"
    5. Delete "no comment is ..."
    6. Categories


    [​IMG]
     
  2. sameerwalkar

    sameerwalkar Guest

    Hi,

    To delete: "Posted on", "by admin", "no comment is ..." use the below code and paste it in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard

    Code:
    .blog .post_meta span {
      display: none;
    }
    .blog ul.post_meta li.posted_in span {
      display: none;
    }
    .blog ul.post_meta li.posted_in a {
      display: none;
    }
    ul.post_meta li.post_date {
      display: none !important;
    }
     
    ul.post_meta li.postc_comment {
      display: none !important;
    }

    To change the language to Japanese refer following images:-

    For search:


    colorway-search.png

    For Category and Archieves

    colorway-sidebar-text.png

    To change the date sequence:

    colorway-date-format.png

    Regards,
    Sameer
     

Share This Page