Disable Reviews for Reply Comments

Discussion in 'GeoCraft WordPress Theme' started by cdllife, Nov 28, 2012.

  1. cdllife

    cdllife New Member

    Joined:
    Oct 19, 2012
    Messages:
    18
    Likes Received:
    2
    Is there a way to disable to review stars from showing when a person replies?

    Thanks.
     
  2. Krish

    Krish Support Staff

    Joined:
    Oct 22, 2012
    Messages:
    210
    Likes Received:
    1
    Location:
    India
    You can hide those review stars from comment section through CSS and make them invisible.



    Use the code below:

    Code:
    p.commpadd{
    display: none;
    }
     
    .star_rating,
    .review_desc,
    .article_rating,
    .r_rating{
    display:none;
    visibility:hidden;
    height:0;
    }
    
     

Share This Page