Hide '0 Reviews' on home page

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #4712
    laurenc
    Participant

    Hello
    I am wondering if it is possible to hide the ‘0 reviews’, the empty star outlines, and the trip type label from the home page? For both the Posts Filter section and the Recommended Posts section, I would like to hide these.
    Thanks!

    #4713
    laurenc
    Participant

    I would also like to hide these on the preview on the “trips” page as well, if possible!

    #4720
    Support Team
    Keymaster

    Hello @laurenc,

    To hide the reviews and the trip type from the Post filter and recommended section from the home page use below given CSS.

    For this go to Admin Panel > Appearance > Customize > Additional CSS and paste below given CSS.

    .home .wp-travel-average-review {
        display: none;
    }
    
    .home span.rating-count {
        display: none;
    }
    
    .home span.trip-category {
        display: none;
    }

    Now to hide the same section from the individual trips use below given CSS.

    .wp-travel-trip-meta-info ul li:nth-of-type(4), .wp-travel-trip-meta-info ul li:nth-of-type(1) {
        display: none;
    }

    Hope this helps.

    Best Regards!!

    #4909
    laurenc
    Participant

    THANKS, this is awesome! Is there a way to hide the same information on the page that shows all trips, or in the shortcode?

    #4915
    Support Team
    Keymaster

    Hello @laurenc,

    We have already answered this query in another topic and please find the answer there.

    Link:
    http://wptravel.io/support-forum/topic/hide-0-reviews-and-xxx-on-shortcode/#post-4914

    Hope this helps.

    Best Regards!!

Viewing 5 posts - 1 through 5 (of 5 total)
  • The forum ‘Travel Log’ is closed to new topics and replies.