better search results display

Discussion in 'Dzonia WordPress Theme' started by kingwebpages, May 4, 2013.

  1. kingwebpages

    kingwebpages New Member

    Joined:
    Mar 5, 2013
    Messages:
    11
    Likes Received:
    0
    How do you remove the Month, Day, Time & Author, Comments from search results in dzonia theme?
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Paste the following code in your Custom CSS
    (Appearance -> Theme Options -> Styling Options -> Custom CSS)
    Code:
    .post_date {
    display: none;
    }
    .post_author {
    display: none;
    }
    .post_comment {
    display: none;
    }
    .post_category {
    display: none;
    }
    This will solve your issue.
     
  3. kingwebpages

    kingwebpages New Member

    Joined:
    Mar 5, 2013
    Messages:
    11
    Likes Received:
    0
    Thanks for your reply, whilst this does remove these from the search results page - it also appears to remove the date/s from my blog page?
     
  4. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Paste the following code in your Custom CSS instead of previous replied code.
    (Appearance -> Theme Options -> Styling Options -> Custom CSS)

    Code:
    .content_wrapper .content .post .post_date {
    display: run-in;
    }
    .post_date {
    display: none;
    }
    .post_author {
    display: none;
    }
    .post_comment {
    display: none;
    }
    .post_category {
    display: none;
    }
    This will solve your issue.
     
  5. kingwebpages

    kingwebpages New Member

    Joined:
    Mar 5, 2013
    Messages:
    11
    Likes Received:
    0
  6. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,
    I am apologies for the above reply.
    Please remove all the code given in the above reply from the Custom CSS(Appearance -> Theme Options -> Styling Options -> Custom CSS) and Paste the following code given below in the Custom CSS.
    Code:
    .content_wrapper .content .hentry .post_date {
    display: none;
    }
    .content_wrapper .content .hentry .post_meta li.post_author {
    display: none;
    }
    .content_wrapper .content .hentry .post_meta li.post_comment {
    display: none;
    }
    .content_wrapper .content .hentry .post_meta li.post_category {
    display: none;
    }
    This will solve your problem
     
  7. kingwebpages

    kingwebpages New Member

    Joined:
    Mar 5, 2013
    Messages:
    11
    Likes Received:
    0
    When I put the new CSS in, I lose all the related information from my Blog page as well. I just want to remove the day, date, author, comments from my search results if possible
     
  8. Piyush

    Piyush Support Staff

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

Share This Page