Delete rating & stars

Discussion in 'GeoCraft WordPress Theme' started by shaunkerry, May 8, 2013.

  1. shaunkerry

    shaunkerry Member

    Joined:
    Dec 6, 2012
    Messages:
    92
    Likes Received:
    3
    Hi

    how do I delete the stars under the listings on the front page and the listing pages. I have tried adding this code but doesnt seem to work
    thanks

    .sidebar .review_thumb ul.r_rating {
    display: none;
    }
     
  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:
    .content_wrapper .star_rating {
    display: none;
    }
    .sidebar .review_thumb ul.r_rating {
    display: none;
    }
    This will solve your issue.
     
  3. shaunkerry

    shaunkerry Member

    Joined:
    Dec 6, 2012
    Messages:
    92
    Likes Received:
    3
    Hi that removes it from the front page, but is still shows on the individual listing pages, is it possible to remove it from there as well please?
    thanks
     
    comedyclubhouse likes this.
  4. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,
    Paste the following code in your Custom CSS
    (Appearance -> Theme Options -> Styling Options -> Custom CSS)
    Code:
    .depth_article .article_detail .article_rating {
    display: none;
    }
    .related_item .rating {
    display: none;
    }
    
    This will remove the rating from single listing also.
     

Share This Page