Navigation
This is archived content. Visit our new forum.
  • Author
    Posts
  • #168759

    skyblog0476
    Participant

    Im trying to integrate a fastbooker code (from an external provider) but it gives me a Jquery conflict. The fastbooker is working but the xtheme shortcode of google maps doesnt work properly anymore and the background that Ive chosen doens’t work anymore as well. Plus the menu on a mobile device is not working. The xtheme sets the default background color instead.

    Anyone who has a suggestion how I can make his work? Im not a coder. Just know some very basic stuff.

    Site URL: http://bertemnatuur.be/bandb/

    Code for the fastbooker I use in a text/html widget right bar (white label code from the provider):

    <!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>
    <html xmlns=”http://www.w3.org/1999/xhtml”>
    <head runat=”server”>
    <title></title>
    <link type=”text/css” href=”https://static.cubilis.eu/jquery/ui/smoothness/jquery-ui-1.8.16.custom.css” rel=”Stylesheet” />
    <link type=”text/css” href=”https://static.cubilis.eu/fancybox/jquery.fancybox-1.3.4.css” rel=”Stylesheet” />
    <!– Optioneel –>

    <!– Indien u nog geen jQuery gebruikt op uw website dient u deze ook in te laden –>

    <script type=”text/javascript” src=”https://static.cubilis.eu/jquery/jquery-1.6.4.min.js”></script>
    <script type=”text/javascript” src=”https://static.cubilis.eu/jquery/jquery-ui-1.8.16.custom.min.js”></script>
    <script type=”text/javascript” src=”https://static.cubilis.eu/jquery/date.js”></script>

    <!– Indien u nog geen Fancybox gebruikt op uw website dient u deze ook in te laden –>
    <script type=”text/javascript” src=”https://static.cubilis.eu/fancybox/jquery.fancybox-1.3.4.js”></script>

    <script type=”text/javascript”>
    var _LOGISID = 527;
    // Wijzig in uw gewenste taal (en, fr, nl, de, es, it)
    var _TAAL = ‘en’;

    $(document).ready(function () {
    $(“#startdate”).datepicker({
    dateFormat: “dd-mm-yy”, buttonImage: “https://static.cubilis.eu/images/datepicker_light.png”,
    showOn: “both”, buttonImageOnly: true, minDate: 0
    });
    $(“#enddate”).datepicker({
    dateFormat: “dd-mm-yy”, buttonImage: “https://static.cubilis.eu/images/datepicker_light.png”,
    showOn: “both”, buttonImageOnly: true, minDate: 1
    });
    var today = new Date();
    $(“#startdate”).datepicker(“setDate”, new Date());
    var tomorrow = today.add(1).days();
    $(“#enddate”).datepicker(“setDate”, tomorrow);

    $(“#startdate”).change(function () {
    var d = Date.parseExact($(this).val(), “dd-MM-yyyy”);
    d = d.add(1).days();
    $(“#enddate”).datepicker(“option”, “minDate”, d);
    });
    });

    function submitmyform(form) {
    var href = form.action + “?logisid=” + _LOGISID
    + “&taal=” + _TAAL + “&startdatum=” + $(“#startdate”).val() + “&einddatum=” + $(“#enddate”).val();
    jQuery.fancybox({ href: href ,type: ‘iframe’, width: 500, height: 550, overlayColor: ‘#000’, hideOnContentClick: false, hideOnOverlayClick: false });
    return false;
    }
    </script>
    </head>
    <body>
    <form method=”get” action=”https://booking.cubilis.eu/check_availability.aspx” onsubmit=”return submitmyform(this);”>
    <table id=”CheckAvailabilityContainer” cellpadding=”10″>
    <tr>
    <td>
    <input type=”text” name=”startdate” id=”startdate” />
    </td>
    </tr>
    <tr>
    <td>
    <input type=”text” name=”enddate” id=”enddate” />
    </td>
    </tr>
    <tr>
    <td>
    <input type=”submit” class=”btnCheckAvail” value=”Check availability” id=”btnSubmit” />
    </td>
    </tr>
    </table>
    </form>
    </body>
    </html>

    #168761

    skyblog0476
    Participant

    Using latest X-Theme and WordPress

    #168897

    Zeshan
    Member

    Hi there,

    Thanks for writing in! It sounds like you might be having an issue with a third party plugin or script. Regretfully, we cannot provide support for third party plugins or scripts as our support policy in the sidebar states due to the fact that there is simply no way to account for all of the potential variables at play when using another developer’s plugin or script. Because of this, any questions you have regarding setup, integration, or troubleshooting any piece of functionality that is not native to X will need to be directed to the original developer.

    Thank you for your understanding.