Add payment option in itinerary

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #70
    Yatriadvisor
    Participant
    1. when i use the shortcut to display itinerary on my homepage,the thumbnail picture of itinerary is blurred and it shows only 2 itineraries in a single row. so is there any way by which i can clear the thumbnail image of itinerary? and can show more than two itinerary in a single row?
    please visit www.yatriadvisor.com and scroll down.
    2. is there any way by which i can add payment option in itinerary?
    3. can i change the url www.yatriadvisor.com/itinerary  to  www.yatriadvisor.com/tours  . i mean can i modify url?
    #73
    Support Team
    Keymaster

    Hi,

    We have inspected your website URL and it is seen that the shortcode used on the homepage is displaying the default 2 columns layout for the itineraries. If you wish to display the three columns layout, you can add in the following custom CSS in your Admin Dashboard > Appearance > Customize > Additional CSS :

    ul.wp-travel-itinerary-list {
        grid-template-columns: repeat(3, 1fr)!important;
    }

    Regarding the blurry image :

    WP Travel plugin by default pulls the default thumbnail size images in the archives and shortcode outputs. The blur image is seen due to the smaller size image loading in your shortcode output context.

    To resolve the issue, please try increasing the dimensions ( width and height ) of your Thumbnail size in your Admin Dashboard > Settings > media.

    You will need to Regenerate thumbnails ( https://wordpress.org/plugins/regenerate-thumbnails/ ) after changing the image size.

    Regarding payment option in itinerary

    The feature to integrate Paypal payment integration with the WP Travel Plugin is currently under development and will be available soon with plugin update.

    Regarding the URL Change : http://www.yatriadvisor.com/itinerary to http://www.yatriadvisor.com/tours

    The feature to change the Itineraries Listing archive slug ( /itinerary ) is not yet available in the WP Travel Plugin. However, we have added the feature to the requested feature and will consider it in the future updates of the plugin.

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

    #401
    Yatriadvisor
    Participant

    hi team,
    as per your last reply. I tried to increase the image pixels and size for the thumbnail image blurred issue but it still doing the same, am using the image size of around 1600*1000 pixels images but it still blurred.

    check : https://yatriadvisor.com

    also the WP travel search widget is not working properly, the form and button is not aligned properly.
    since you have updated the plugin for paypal add so can you please tell me how to add the paypal option in website or plugin?

    Is there any way but which we can make the grid view permanent instead of having option as grid view or List view on itineraries page?

    thank you

    Regards..

    #404
    Support Team
    Keymaster

    Hello @yatriadvisor,

    When we inspected your site URL we found that the image you have used is very small so please make sure to upload the image of bigger size.

    Also when we tested the widget locally, it is working fine and when inspected the URL we did not find the search widget so please provide the screenshot to find where you have exactly used it.

    As for the paypal option, we will email you separately.

    Finally, to make the grid view permanently you have added below-given code in your child theme functions.php file .

    add_filter( 'wp_travel_default_view_mode', 'default_view_mode' );
    
    function default_view_mode( $view_mode ) {
    	
    	return 'grid';
    }

    Hope this helps.

    If you have any issues further please let us know.

    Best Regards!!

    #405
    Yatriadvisor
    Participant

    thank you for last reply.
    Can you suggest that what should be the size of image for itineraries thumbnail?

    Please check the link for the wp-travel search problem.
    https://yatriadvisor.com/
    the search bar is not properly aligned..like search button and other form is not properly aligned.

    Am waiting for the email regarding adding paypal option .

    Thank you
    Regards

    #410
    Support Team
    Keymaster

    Hello @yatriadvisor,

    Please find below the responses for each of your queries/requests below :

    Regarding the itineraries image thumbnail:

    Inspecting your website URL you should try setting the image or dimensions 600 by 600 pixels for the home section display.

    Regarding the Search widget styling

    You can add in the following custom CSS in your Admin Dashboard > Appearance > Customize > Additional CSS or in your child theme’s style.css file for the styling or the form as per the WP Travel demo website :

    .home .widget_wp_travel_search {
        padding: 30px 0;
        width: 100%;
    }
    .home .widget_wp_travel_search p input, .widget_wp_travel_search p select {
        width: 100% !important;
        height: 40px;
    }
    .home .widget_wp_travel_search p {
        margin: 0 auto;
        float: left;
        display: inline-block;
        padding: 20px;
        width: 25%;
    }
    .home .widget_wp_travel_search p label {
        display: block;
        font-size: 16px;
        font-weight: bold;
        font-style: italic;
        color: #236fd0;
        text-align: left;
        width: 100%;
    }
    .home .widget_wp_travel_search p label input {
        position: relative;
        border-radius: 4px;
        font-size: 14px;
        line-height: 20px;
        padding: 5px 10px;
        min-width: 75px;
        width: 100% !important;
        text-transform: uppercase;
    }
    .home .wp-travel-search p.wp-travel-search {
        position: relative;
        top: 23px;
    }
    .home .wp-travel-search p.wp-travel-search input {
        width: 100%;
    }
    @media (max-width: 780px){
    .home .widget_wp_travel_search p{
        padding: 10px 15px;
        width: 100%;
    }
    }

    Also, regarding the paypal payment addon zip, please check your email inbox ( as well as spam folder ) as we have already sent you zip file with instructions regarding the plugin addon usage.

    for any queries/issues please feel free to write back to us.

    Hope this Helps,

    Best Regards !!

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