• Resolved helprussi

    (@helprussi)


    How to remove the stars shown with the trip? I want to disable reviews on my website and remove the stars shown in the trip, please help me with disabling reviews and stars.

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Support wptravelsupport

    (@wptravelsupport)

    Hello,

    Thank you for contacting WP Travel team!

    Regarding disabling the review tab in the individual trip go through Admin Panel > Trips > Individual Trip > Tabs > Reviews as shown in the attached screenshot https://prnt.sc/9NdjdWHq7Xmo 

    Also, if you have enabled the “Use Global Tabs Layout” option on the individual trip then disable the review tab going through Admin Panel > WP Travel > Settings > Trips > Tabs > Review as shown in the attached screenshot.https://prnt.sc/b67X2Kq7iZwj 

    Hope this helps you.

    Thread Starter helprussi

    (@helprussi)

    Hi, thanks for explaining the solution to this issue. It does disable the review stars shown with the trip name but doesn’t remove the reviews section as shown in the screenshot: https://snipboard.io/sKim4v.jpg

    Please help me remove the reviews feature completely from the trip.

    Plugin Support wptravelsupport

    (@wptravelsupport)

    Hi,

    Glad that we could help you.

    Also, regarding removing the review count from the single trip page, please add the following given code in the functions.php file of your child theme.

    function wp_travel_trip_meta_info_after_excerpt( $text_list ) {
    unset( $text_list[ 'reviews' ] );
    return $text_list;
    }
    add_action('wptravel_after_excerpt_single_trip_page' , 'wp_travel_trip_meta_info_after_excerpt' );

    For detail information regarding how to create a child theme, please refer to our Knowledgebase.

    Hope this helps.

    Thread Starter helprussi

    (@helprussi)

    Thanks for the additional code. It fixes the issue.

    Plugin Support wptravelsupport

    (@wptravelsupport)

    Hi,

    Glad that we could help you.

    If you have any further queries related to WP Travel, please do not hesitate to contact us.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Reviews Feature Disablement’ is closed to new replies.