Floater for specific pages with specific links otherwise add the button

PHOTO EMBED

Tue Sep 03 2024 11:22:53 GMT+0000 (Coordinated Universal Time)

Saved by @Shira

<script>
$(document).ready(function () {
    // Define the page-specific URLs and their corresponding booking URLs
    var pageMap = {
        "https://nationalzoo.com.au/encounter/awesome-roarsome-tour/": "https://fareharbor.com/embeds/book/nationalzoo/items/565915/?full-items=yes&flow=1231254",
        "https://nationalzoo.com.au/encounter/african-savannah-safari/": "https://fareharbor.com/embeds/book/nationalzoo/items/565917/?full-items=yes&flow=1231254",
        "https://nationalzoo.com.au/wildnightzooventure/": "https://fareharbor.com/embeds/book/nationalzoo/?full-items=yes&flow=1231275",
        "https://nationalzoo.com.au/encounter/walk-on-the-wildside/": "https://fareharbor.com/embeds/book/nationalzoo/items/566541/?full-items=yes&flow=1231254",
        "https://nationalzoo.com.au/encounter/family-wonders-of-wildlife-tour/": "https://fareharbor.com/embeds/book/nationalzoo/items/566545/?full-items=yes&flow=1231254",
        "https://nationalzoo.com.au/encounter/enrichment-tour/": "https://fareharbor.com/embeds/book/nationalzoo/items/566546/?full-items=yes&flow=1231254",
        "https://nationalzoo.com.au/groups-education/focus-on-wildlife/": "https://fareharbor.com/embeds/book/nationalzoo/items/566537/?full-items=yes&flow=1231254",
        "https://nationalzoo.com.au/close-encounters/cheetah-experiences/": "https://fareharbor.com/embeds/book/nationalzoo/?full-items=yes&flow=1231270",
        "https://nationalzoo.com.au/encounter/meet-a-meerkat/": "https://fareharbor.com/embeds/book/nationalzoo/items/566557/?full-items=yes&flow=1231261",
        "https://nationalzoo.com.au/encounter/lemur-encounter/": "https://fareharbor.com/embeds/book/nationalzoo/items/567986/?full-items=yes&flow=no",
        "https://nationalzoo.com.au/encounter/giraffe-encounter/": "https://fareharbor.com/embeds/book/nationalzoo/items/566551/?full-items=yes&flow=1231261",
        "https://nationalzoo.com.au/encounter/sun-bear-encounter/": "https://fareharbor.com/embeds/book/nationalzoo/items/566552/?full-items=yes&flow=1231261",
        "https://nationalzoo.com.au/encounter/tiger-encounter/": "https://fareharbor.com/embeds/book/nationalzoo/items/566553/?full-items=yes&flow=1231261",
        "https://nationalzoo.com.au/encounter/white-lion-encounter/": "https://fareharbor.com/embeds/book/nationalzoo/items/566549/?full-items=yes&flow=1231261",
        "https://nationalzoo.com.au/encounter/rhino-encounter/": "https://fareharbor.com/embeds/book/nationalzoo/items/566559/?full-items=yes&flow=1231261",
        "https://nationalzoo.com.au/encounter/owl-encounter/": "https://fareharbor.com/embeds/book/nationalzoo/items/566556/?full-items=yes&flow=1231261"
    };

    // Get the current page URL
    var currentPage = window.location.href;

    // Get the corresponding booking URL or default if not found
    var bookingURL = pageMap[currentPage] || "https://fareharbor.com/embeds/book/nationalzoo/?full-items=yes";

    // Create the desktop button
    var desktopButton = $('<a>', {
        href: bookingURL,
        style: "font-weight:bold !important; box-shadow:none !important; padding: .6em 2em !important;",
        class: "fh-hide--mobile fh-shape--square fh-fixed--bottom fh-icon--ticket fh-color--black fh-button-true-flat-color",
        text: "Book now"
    });

    // Create the mobile button
    var mobileButton = $('<a>', {
        href: bookingURL,
        style: "font-size: 1.1em !important; font-weight:bold !important; box-shadow:none !important;",
        class: "fh-hide--desktop fh-size--small fh-fixed--bottom fh-shape--square fh-icon--ticket fh-button-true-flat-color fh-color--black",
        text: "Book now"
    });

    // Append the buttons to the body
    $('body').append(desktopButton).append(mobileButton);
});
</script>
content_copyCOPY