Okay
  Public Ticket #1304883
Footer Alignment + Search transfer
Closed

Comments

  •  2
    Asilva9999 started the conversation

    Hello,

    I tried different ways to align the footer but i canĀ“t reach there. 

    I would like to ask the best way to align it? Print attached. 

    The widget "Follow us" from the theme do not have tripadvisor. Is possible to have it? Is also possible to have color icons for that? 

    At the moment the social buttons are images and i also use an image. 

    I would like to know how to change the picker to book transfers only with 6 hours in advance.

    Look forward for your reply.

    Best regards, 

    Alexandre Silva


  •  2,059
    Theme replied

    Hello,

    my apologies for a late response.

    For the alignment, please use the following custom css code:

    #footer-sidebar .widget {float:left;width:33.3333%;}
    #footer-sidebar .widget article {width:100% !important;}
    #footer-sidebar .widget:last-of-type {width:100%;}

    It appears you have already managed to implement the other style changes. Let us know if you would need anything else, please.

    Search results parameters can be modified via Appearance > Theme Options > Configuration settings. If there is something else you would like to change, please provide more information about the desired modification.

    Thank you


    Best regards,

    themeenergy support

  •  2
    Asilva9999 replied

    Hello,

    Thank you for the CSS code. It worked for desktop but do not work for mobile. I cannot use. 

    About the search results. What i need is to block the timepicker to be only possible to select the time from 6 hours from the moment of the booking.

    E.g.: Client is on the website at 10H00am - Time picker only allowed to book a transfer in the same day from 04H00pm 

    Can you help me with that issue? 

    Thank you 

  •  2,059
    Theme replied

    Hi,

    For css, are you sure you cleared your mobile browser cache?

    To restrict the search to 6 hours ahead of what the time is right now, you need to open wp-content/plugins/transfers-plugin/js/search.js and change lines 37 and 38 from

    $('.departure-date').datetimepicker({    
    minDate: 0,
    

    to

    var d1 = new Date ();
    var d2 = new Date ( d1 );
    d2.setHours ( d1.getHours() + 6 );
    $('.departure-date').datetimepicker({    
    minDateTime: d2,


    Best regards,

    themeenergy support

  •  2
    Asilva9999 replied

    Hello,

    Yes, i cleaned the mobile cache and i get the dis-formatted footer as picture attached. 

    Is there any solution for that?

    The css for search for 6 hours ahead work perfectly. 

    thank you

  •  2,059
    Theme replied

    Hello,

    your footer seems to be displayed fine, so please try to clear your cache again and reload the page.

    As for the css code that was not responsive, you can use the following instead, it will work ok on all screen sizes:

    @media screen and (min-width: 981px) {
    #footer-sidebar .widget {float:left;width:33.3333%;}
    #footer-sidebar .widget article {width:100% !important;}
    #footer-sidebar .widget:last-of-type {width:100%;}
    }

    Thank you


    Best regards,

    themeenergy support

  •  2
    Asilva9999 replied

    Hello,

    With this Css is displaying correctly.

    Thank you very much for your help and quick reply.

    Best regards,

    Alexandre Silva 

  •  2,059
    Theme replied

    You are welcome.

    Best regards,

    themeenergy support