GeoCraft - Listing Reviews

Discussion in 'GeoCraft WordPress Theme' started by TSMM, Nov 13, 2012.

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

    TSMM Member

    Joined:
    Dec 28, 2011
    Messages:
    65
    Likes Received:
    2
    I noticed that there is a REVIEWS tab with each listing, however, I can't see how to add or moderate reviews:-

    How do people leave "LISTING REVIEWS"?
    How does the webmanager moderate "LISTING REVIEWS"?
    How can we turn off "LISTING REVIEWS"?

    Thanks you
     
  2. Krish

    Krish Support Staff

    Joined:
    Oct 22, 2012
    Messages:
    210
    Likes Received:
    1
    Location:
    India
    1. The Listing Reviews works almost like the Comment section with the rating option inbuilt in it.
    2. The webmanager can moderate the reviews from the Admin panel in Comments section.
    3. You can hide it completely using the CSS, so that the users won't see anything over there.
    Use the CSS code below to hide the Reviews Tab.

    Code:
    .tabbed .tabnav li a {
    display: none;
    }
    Put this code in custom css in theme option.
     
  3. TSMM

    TSMM Member

    Joined:
    Dec 28, 2011
    Messages:
    65
    Likes Received:
    2
    Thank you Krish, this was helpful to remove the "Review" tab, however, the Rating stars and "no review" still display on the business listing pages.
     
  4. Krish

    Krish Support Staff

    Joined:
    Oct 22, 2012
    Messages:
    210
    Likes Received:
    1
    Location:
    India
    Add following css code into custom css option, this will hide complete reviews and rating from your site.

    Code:
    .star_rating,
    .review_desc,
    .article_rating,
    .r_rating{
    display:none;
    visibility:hidden;
    height:0;
    }
     
    sooraj likes this.
  5. TSMM

    TSMM Member

    Joined:
    Dec 28, 2011
    Messages:
    65
    Likes Received:
    2
    Thank you Krish, you're marvelous.
     
Thread Status:
Not open for further replies.

Share This Page