Tour display padding problem (WP TRAVEL PLugin)

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #7828
    pmphilipps
    Participant

    Hi all!

    The plugin works fine on my website using Howello Hotel Theme.
    However i’ve got 2 problems and a few questions
    1. How to chage the automatic generated “itinary” which come in the link when you clic on a tour to view it
    2. I’ve got a padding problem when displaying a particular tour, the tour appears at the top of the page under the menu (please have a look: https://www.dropbox.com/s/antsl5o3oumr9d1/pbpadding.jpg?dl=0)
    3. How could i remove “groupe size” and “activities” info in a displayed tour?
    4. Last one… for the pricing, ideally i’d like to display “Since” before the $… How could i do that.
    5. I’ve bought WP TRAVEL utilities, as i would like to hide the “trip code” Does someone knows how to manage it?
    Thanks all for your kind help.

    #7839
    Support Team
    Keymaster

    Hello @pmphilipps,

    Please find below the responses for each of your queries listed below :

    1. How to change the automatic generated “itinerary” which come in the link when you click on a tour to view it
    Response: By Default, the trips archive page shows “itinerary” in the URL Slugs. However, you can change the slug to any text of your choice from your Admin Dashboard > Settings > Permalinks. For more details on the feature, please see the link here :

    http://wptravel.io/how-to-change-the-url-for-the-trips-archive-page/

    2. I’ve got a padding problem when displaying a particular tour, the tour appears at the top of the page under the menu
    Response: The padding issue is caused in your site as you are using the transparent navigation menu bar that takes the page from the top of the menu content. To resolve the issue, please add the following custom CSS in your Admin Dashboard > Appearance > Customize > Additional CSS :

    .post-type-archive-itineraries .wp-travel-archive-content,
    .single-itineraries .wp-travel-content {
    	margin-top: 175px;
    }
    
    .single-itineraries .wp-travel-trip-meta-info li:nth-of-type(2),
    .single-itineraries .wp-travel-trip-meta-info li:nth-of-type(3) {
    	display: none;
    }

    3. How could I remove “group size” and “activities” info in a displayed tour?
    Response: The above CSS Code also contains the code for removal of activities and group size from the trip single page.

    4. Last one… for the pricing, ideally, I’d like to display “Since” before the $… How could I do that?
    Response: You can use the filter below in your Child Theme’s functions.php file to change the price display as per your requirements :

    function wp_travel_customize_sale_price_display( $s, $c, $d ) {
    	return sprintf( esc_html__('Since %1s %2s', 'wp-travel' ),  $c , $d );
      }
      add_filter( 'wp_travel_itinerary_sale_price', 'wp_travel_customize_sale_price_display', 99, 3 );
      function wp_travel_customize_price_display( $s, $c, $d ) {
    	global $wp_travel_itinerary;
    	if ( $wp_travel_itinerary && $wp_travel_itinerary->is_sale_enabled() ) {
    	   return  sprintf( esc_html__('Since %1s %2s', 'wp-travel' ), $c , $d );
    	  // return $s;
    	}
    	return sprintf( esc_html__('Since %1s %2s', 'wp-travel' ), $c , $d );
      }
      add_filter( 'wp_travel_itinerary_price', 'wp_travel_customize_price_display', 99, 3 );

    5. I’ve bought WP TRAVEL utilities, as I would like to hide the “trip code” Does someone knows how to manage it?
    Response: Please check the documentation link below for information on managing the Trip Codes for trips with WP Travel Utilities Addon :

    http://wptravel.io/documentations/wp-travel-utilities/trip-code/

    If you have any queries/issues or requests further, please feel free to write back to us.

    Best Regards !!

    #7844
    pmphilipps
    Participant

    Wow!!! What a fast a complete answer! I really appreciate!!!!

    Thanks a lot! As i read, your team is working on a pro version, I’m very interested to buy it when it comes out, Do you already have a release date?

    Best regards and thanks again, i was stuck, you made my day!

    #7846
    Support Team
    Keymaster

    Hello @pmphilipps,

    Glad to know we could help you with the issues. 🙂

    Regarding your query, yes we are continuously working on the development of new features and functionalities for WP Travel plugin through core plugin update and premium addons. We are releasing new features for plugin and add-ons regularly.

    You can also subscribe to our newsletter to get more details on new updates/addons release and premium features.

    Also, if you have any queries/issues or feature requests, you can write back to us and we will definitely help you further.

    Best Regards !!

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