Removing dates on posts...

Discussion in 'BlogSpring WordPress Theme.' started by marian, Mar 12, 2014.

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

    marian New Member

    Joined:
    Mar 5, 2014
    Messages:
    15
    Likes Received:
    0
    Is there an option to remove the dates from the posts so that they are not showing?

    And also, I have 2 featured posts on the home page, but they are ordered from the oldest to the newest, so when a visitor enters my site he will see the older featured post at first and just under this post is the latest featured post. I guess the order of featured posts should be from the newest to the oldest ones..

    Thanks for you wonderful support so far!
    Marian
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    1. Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    .content-bar .post.single ul.post_meta li.posted_date {
    display: none;
    }
    .featured_post .post ul.post_meta li.posted_date {
    display: none;
    } 
    This will remove the date from post.

    2. For your second issue,
    go to the index.php file present in your theme directory and follow the instruction shown in the image given below.

    [​IMG]

    This will display the feature post according to the publish date.
     
  3. marian

    marian New Member

    Joined:
    Mar 5, 2014
    Messages:
    15
    Likes Received:
    0
    wonderful, thanks a lot!
    Marian
     
Thread Status:
Not open for further replies.

Share This Page