Disable Ratings/Reviews on Profile Listings

This topic contains 6 replies, has 3 voices, and was last updated by  Megan Kempf 4 years, 4 months ago.

We have moved to a support ticketing system and our forums are now closed.

Open Support Ticket
  • Author
    Posts
  • #516969

    Megan Kempf
    Full Member
    Post count: 28

    Hello! I’ve followed the steps listed here: https://wpgeodirectory.com/docs-v2/faq/common-examples/#ratings but the rating stars and review count are still showing on profile listings (just where users can see the listings they’ve created or claimed). Is it possible for me to disable them here as well?

    Thanks!

    #516996

    Kor
    Moderator
    Post count: 16516

    Hi Megan,

    Thanks for your reply. There isn’t an option to remove it and you’ll need to use custom CSS code. Try using the code below and see if it works for you. Also, share the URL of the page in question if it’s not working.

    .uwp-profile-cpt-loop .gd-rating-outer-wrap{display:none;}
    #517175

    Megan Kempf
    Full Member
    Post count: 28

    This code didn’t appear to work, and actually the css I’ve used to remove it site-wide isn’t totally working either. The rating stars are appearing again in the location bubbles. I’ve checked that I did it just like in the post shared above, so I’m not sure if I’ve overridden it somehow? You can see them still appearing in bubbles here: https://ccchurchlink.com/search/?geodir_search=1&stype=gd_place&spost_category%5B%5D=&s=the+crossing&snear=&sgeo_lat=&sgeo_lon=

    But I’m not sure how you’ll be able to see profile details without a login and claimed listing. Would you like login credentials?

    #517189

    Alex Rollin
    Moderator
    Post count: 27815

    We have sample CSS here for removing map bubble comments:

    
    
    
    .geodir-bubble-meta-bottom {display:none!important;}
    

    https://wpgeodirectory.com/docs-v2/faq/common-examples/#map-bubble-reviews

    #517207

    Megan Kempf
    Full Member
    Post count: 28

    Maybe I wasn’t clear. I’ve included all recommended CSS on my site:

    /*GD -  Remove map bubble ratings on gd_place Archive pages*/
    .post-type-archive-gd_place .gd-bubble .geodir-post-rating{
        display: none;
    }
    .geodir-bubble-meta-bottom {
     display:none!important;
    }
    
    /*GD -  Remove map bubble ratings on gd_place Detail pages*/
    .single-gd_place .gd-bubble .geodir-post-rating {
        display: none;
    }
    /*GD -  Remove Archive item rating from gd_place Archive pages*/
    li.gd_place .geodir-post-rating {
        display: none;
    }

    These features have been appropriately hidden on listing detail pages and archive listings, but I’m still seeing stars on (1) the map bubbles, and (2) the uwp profile listings.

    Can you help?

    #517209

    Kor
    Moderator
    Post count: 16516

    Hi Megan,

    Thanks for your reply. Try using the custom CSS code below. Insert into WP > Appearance > Customize > Additional CSS

    .geodir-bubble-meta-top .geodir-post-rating {display:none!important;} 
    #517216

    Megan Kempf
    Full Member
    Post count: 28

    Thank you, this did indeed remove the ratings from the bubble, and I was able to create this to remove them from the profile listings:

    .uwp_page .uwp-profile-item-ul .uwp-time-ratings-wrap{
    	display: none;
    }
Viewing 7 posts - 1 through 7 (of 7 total)

We have moved to a support ticketing system and our forums are now closed.

Open Support Ticket