{"id":433,"date":"2024-01-11T15:53:55","date_gmt":"2024-01-11T15:53:55","guid":{"rendered":"https:\/\/becocktails.com\/?page_id=433"},"modified":"2024-07-16T14:45:46","modified_gmt":"2024-07-16T14:45:46","slug":"shipping","status":"publish","type":"page","link":"https:\/\/becocktails.com\/?page_id=433","title":{"rendered":"Shipping Policy"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"433\" class=\"elementor elementor-433\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-de62f49 e-flex e-con-boxed e-con e-parent\" data-id=\"de62f49\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-1a8efc5 e-flex e-con-boxed e-con e-child\" data-id=\"1a8efc5\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-30d712a elementor-widget elementor-widget-heading\" data-id=\"30d712a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Where do you deliver?<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\n<style>\n    .external-cart-item-image {\n        position: relative;\n    }\n\n    .added-to-cart-notification {\n        display: none;\n        text-transform: uppercase;\n        color: #FFFFFF;\n        background-color: #D30859;\n        padding: 10px;\n        z-index: 99;\n        opacity: 0;\n        animation: fadeInOut 6s ease-in-out;\n        position: absolute;\n        bottom: 5px;\n        left: 0;\n        right: 0;\n        text-align: center;\n    }\n\n    @keyframes fadeInOut {\n        0%, 100% {\n            opacity: 0;\n        }\n        10%, 90% {\n            opacity: 1; \n        }\n        100% {\n            opacity: 0;\n        }\n    }\n<\/style>\n\n<script\n  src=\"https:\/\/code.jquery.com\/jquery-3.7.1.js\"\n  integrity=\"sha256-eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=\"\n  crossorigin=\"anonymous\"><\/script>\n\n<script>\njQuery.noConflict();\njQuery(document).ready(function($) {\n    \/\/ Function to add an item to the cart\n    function addToCart(productId, productPrice, quantity, notificationIndex, postID, productImage, productTitle) {\n        \/\/ Retrieve the existing cart data from the cookie\n        var cart = getCartFromCookie();\n\n        \/\/ Check if the item is already in the cart\n        var existingItem = cart.find(function(item) {\n            return item.id === productId;\n        });\n\n        if (existingItem) {\n            \/\/ If the item already exists, update its quantity\n            existingItem.quantity += quantity;\n        } else {\n            \/\/ If it doesn't exist, add it as a new item with all the details\n            cart.push({\n                id: productId,\n                price: productPrice,\n                quantity: quantity,\n                postID: postID,\n                image: productImage,\n                title: productTitle\n            });\n        }\n\n        \/\/ Update the cart data in the cookie\n        setCartCookie(cart);\n\n        \/\/ Show the corresponding notification\n        showNotification(notificationIndex);\n\n        \/\/ Log data to the console\n        \/\/ console.log('Product ID:', productId);\n        \/\/ console.log('Product Price:', productPrice);\n        \/\/ console.log('Quantity:', quantity);\n        \/\/ console.log('Post ID:', postID);\n        \/\/ console.log('Image:', productImage);\n        \/\/ console.log('Title:', productTitle);\n    }\n\n    \/\/ Function to retrieve the cart data from the cookie\n    function getCartFromCookie() {\n        var cartCookie = getCookie('cart-items');\n        return cartCookie ? JSON.parse(cartCookie) : [];\n   }\n\n    \/\/ Function to set the cart data in the cookie\n    function setCartCookie(cart) {\n        var cartCookie = JSON.stringify(cart);\n        setCookie('cart-items', cartCookie, 7); \/\/ Expires in 7 days (you can adjust this)\n   }\n\n    \/\/ Function to get a cookie value by name\n    function getCookie(name) {\n        var value = \"; \" + document.cookie;\n        var parts = value.split(\"; \" + name + \"=\");\n        if (parts.length == 2) return parts.pop().split(\";\").shift();\n    }\n\n    \/\/ Function to set a cookie\n    function setCookie(name, value, days) {\n        var expires = \"\";\n        if (days) {\n            var date = new Date();\n            date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000));\n            expires = \"; expires=\" + date.toUTCString();\n        }\n        document.cookie = name + \"=\" + value + expires + \"; path=\/\";\n    }\n\n    \/\/ Function to show the notification\n    function showNotification(notificationIndex) {\n        var notificationBar = document.getElementById('addedToCartNotification' + notificationIndex);\n        notificationBar.style.display = 'block';\n\n        setTimeout(function () {\n            notificationBar.style.display = 'none';\n        }, 3000);\n    }\n\n    \/\/ Event listener for the \"Add to Cart\" button\n    $('.atc-button').on('click', function() {\n        var productId = $(this).data('product-id');\n        var productPrice = $(this).data('product-price');\n        var notificationIndex = $(this).data('notification-id');\n        var postID = $(this).data('post-id');\n        var productImage = $(this).data('product-image');\n        var productImageSrc = productImage;\n        var productTitle = $(this).data('product-title');\n        var quantity = 1;\n\n        \/\/ Call the addToCart function to add the item to the cart and show the notification\n        addToCart(productId, productPrice, quantity, notificationIndex, postID, productImageSrc, productTitle);\n    });\n\n    \/\/ Log that the script has loaded\n    console.log('External Cart script loaded');\n});\n<\/script>\n\n<script>\n    jQuery.noConflict();\n    jQuery(document).ready(function($) {\n        $('.add-to-cart-form').on('submit', function(e) {\n            e.preventDefault(); \/\/ Prevent the form from submitting normally\n\n            \/\/ Get form data\n            var formData = $(this).serializeArray();\n\n            \/\/ Create an object to store product details\n            var productData = {};\n            formData.forEach(function(item) {\n                productData[item.name] = item.value;\n            });\n\n            \/\/ Call the addToCart function to add the item to the cart\n            addToCart(productData);\n\n            \/\/ Show the notification after adding to cart\n            showNotificationAfterRefresh();\n\n            \/\/ Optionally, you can redirect the user to a cart page or show a success message\n            \/\/ For now, let's simply reload the page\n            location.reload();\n        });\n\n        function addToCart(productData) {\n            \/\/ Retrieve the existing cart data from the cookie\n            var cart = getCartFromCookie();\n\n            \/\/ Check if the item is already in the cart\n            var existingItem = cart.find(function(item) {\n                return item.id === parseInt(productData.id, 10);\n            });\n\n            if (existingItem) {\n                \/\/ If the item already exists, update its quantity\n                existingItem.quantity += parseInt(productData.quantity, 10);\n            } else {\n                \/\/ If it doesn't exist, add it as a new item with all the details\n                cart.push({\n                    id: parseInt(productData.id, 10), \/\/ Convert to integer\n                    price: parseFloat(productData.price), \/\/ Keep as float, or use parseInt if price should be an integer\n                    quantity: parseInt(productData.quantity, 10),\n                    image: productData.image,\n                    title: productData.title\n                });\n\n                \/\/ Store information about the added item in session storage\n                storeAddedItem(productData.title);\n            }\n\n            \/\/ Update the cart data in the cookie\n            setCartCookie(cart);\n\n            \/\/ Optionally, you can show a success message or update the UI\n            console.log(\"Product added to cart:\", productData);\n        }\n\n        \/\/ Function to store information about the added item in a cookie\n        function storeAddedItem(productTitle) {\n            setCookie('addedItem', productTitle, 1); \/\/ Expires in 1 day (you can adjust this)\n        }\n\n        \/\/ Function to retrieve information about the added item from the cookie\n        function getAddedItem() {\n            return getCookie('addedItem');\n        }\n\n        \/\/ Function to show a notification after the page refresh\n        function showNotificationAfterRefresh() {\n            var encodedTitle = getAddedItem();\n\n            if (encodedTitle) {\n                \/\/ Decode the product title before creating the notification\n                var productTitle = decodeURIComponent(encodedTitle);\n\n                \/\/ Create a notification element\n                var notification = $('<div class=\"notification\">This item has been added to your basket<button class=\"cart-link\">Go to Cart<\/button><\/div>');\n\n                \/\/ Append the notification to the container\n                $('#notification-container').html(notification);\n\n                \/\/ Set up the event listener for the \"Go to Cart\" button\n                $('.cart-link', notification).on('click', function() {\n                    \/\/ Redirect to the cart page or perform any other desired action\n                    alert('Redirecting to the cart page'); \/\/ Replace with your actual logic\n                });\n\n                \/\/ Remove the stored item information from the cookie\n                setCookie('addedItem', '', -1); \/\/ Expire the cookie\n            }\n        }\n\n        \/\/ Function to retrieve the cart data from the cookie\n        function getCartFromCookie() {\n            var cartCookie = getCookie('cart-items');\n            return cartCookie ? JSON.parse(cartCookie) : [];\n        }\n\n        \/\/ Function to set the cart data in the cookie\n        function setCartCookie(cart) {\n            var cartCookie = JSON.stringify(cart);\n            setCookie('cart-items', cartCookie, 7); \/\/ Expires in 7 days (you can adjust this)\n        }\n\n        \/\/ Function to get a cookie value by name\n        function getCookie(name) {\n            var value = \"; \" + document.cookie;\n            var parts = value.split(\"; \" + name + \"=\");\n            if (parts.length == 2) return parts.pop().split(\";\").shift();\n        }\n\n        \/\/ Function to set a cookie\n        function setCookie(name, value, days) {\n            var expires = \"\";\n            if (days) {\n                var date = new Date();\n                date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000));\n                expires = \"; expires=\" + date.toUTCString();\n            }\n            document.cookie = name + \"=\" + value + expires + \"; path=\/\";\n        }\n    });\n<\/script>\t\t<div class=\"elementor-element elementor-element-3b834c2 elementor-widget elementor-widget-text-editor\" data-id=\"3b834c2\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>At this moment in time, we only accept orders for delivery within the UK (as described by DX as England, Scotland, Wales, Northern Ireland, the Isle of Man, the Isles of Scilly and the Shetland Islands).<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-0a52ff2 e-flex e-con-boxed e-con e-child\" data-id=\"0a52ff2\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2d8bd10 elementor-widget elementor-widget-heading\" data-id=\"2d8bd10\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">How much is UK delivery?<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-5bdab0f elementor-widget elementor-widget-text-editor\" data-id=\"5bdab0f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>The cost of UK delivery is calculated at checkout and is based on the weight of your order. For a full breakdown of weight brackets, alongside the associated costs, please see the below:<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-91abefc elementor-widget elementor-widget-text-editor\" data-id=\"91abefc\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Up to 30kg \u2013 \u00a35.00<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-5ac9f52 elementor-widget elementor-widget-text-editor\" data-id=\"5ac9f52\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>31kg \u2013 60kg \u2013 \u00a36.50<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-196de9a elementor-widget elementor-widget-text-editor\" data-id=\"196de9a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>61kg \u2013 90kg \u2013 \u00a38.00<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a7ad4dc elementor-widget elementor-widget-text-editor\" data-id=\"a7ad4dc\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>91kg plus \u2013 \u00a310.00<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-d4dbb21 e-flex e-con-boxed e-con e-child\" data-id=\"d4dbb21\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-234f4b1 elementor-widget elementor-widget-heading\" data-id=\"234f4b1\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">How do I qualify for free UK delivery?<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-eb59663 elementor-widget elementor-widget-text-editor\" data-id=\"eb59663\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>*Orders over \u00a350.00 will qualify for free UK delivery, in the instance that coupon FREEDEL is used at checkout. The FREEDEL coupon cannot be used in conjunction with any other coupon. It should be noted that the FREEDEL coupon cannot be used on orders containing more than 10 items, as restricted by the maximum number of cases per order limit.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-df01562 e-flex e-con-boxed e-con e-child\" data-id=\"df01562\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-38b5b81 elementor-widget elementor-widget-heading\" data-id=\"38b5b81\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">How long does UK delivery take?<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-72a21f2 elementor-widget elementor-widget-text-editor\" data-id=\"72a21f2\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>All orders placed Monday to Friday before 8am will normally be delivered within 2-5 working days, however this may be extended due to courier delays.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-7e96fab e-flex e-con-boxed e-con e-child\" data-id=\"7e96fab\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c3bbcbd elementor-widget elementor-widget-heading\" data-id=\"c3bbcbd\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">When will my order be processed?<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1836b54 elementor-widget elementor-widget-text-editor\" data-id=\"1836b54\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Our team work Monday to Friday so the cut off time for processing an order is 8am. Any order placed after 8am will be processed the next working day (for Friday orders after 8am, these will be prioritised for processing on Monday morning).<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-c43c7e8 e-flex e-con-boxed e-con e-child\" data-id=\"c43c7e8\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-0636cd8 elementor-widget elementor-widget-heading\" data-id=\"0636cd8\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Which delivery courier will deliver my order?<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c310e40 elementor-widget elementor-widget-text-editor\" data-id=\"c310e40\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>All orders are delivered by DX.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-36c151e e-flex e-con-boxed e-con e-child\" data-id=\"36c151e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1aa3c9d elementor-widget elementor-widget-heading\" data-id=\"1aa3c9d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Delivery to a business address<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6063a89 elementor-widget elementor-widget-text-editor\" data-id=\"6063a89\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Should you place an order for delivery to a business address, please ensure that the recipient (e.g. receptionist) of the order is adequately informed prior to delivery being facilitated. Should DX confirm that delivery was successful, and thus the order has been signed for on your behalf, we will not take responsibility for its delivery to you.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-127986d e-flex e-con-boxed e-con e-child\" data-id=\"127986d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-9f4a4bd elementor-widget elementor-widget-heading\" data-id=\"9f4a4bd\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">How can I track the progress of my order?<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6800e9c elementor-widget elementor-widget-text-editor\" data-id=\"6800e9c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Upon dispatch of your order, you will receive both an email and an SMS message, from DX, to the mobile number provided during checkout\/account creation. Such email and SMS message will contain a unique tracking reference, of which can be used to track the progress of your order <a href=\"https:\/\/my.dxdelivery.com\/\" target=\"_blank\" rel=\"noopener\">here<\/a>.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-3b98d19 e-flex e-con-boxed e-con e-child\" data-id=\"3b98d19\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-83c745a elementor-widget elementor-widget-heading\" data-id=\"83c745a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Can I change my order once it has been placed?<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3b73f10 elementor-widget elementor-widget-text-editor\" data-id=\"3b73f10\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Unfortunately, once confirmed, orders cannot be changed online but if you do spot an error, please drop us an email to hello@goodtimein.co.uk and we will do what we can to accommodate any requests.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-00d5bc4 e-flex e-con-boxed e-con e-child\" data-id=\"00d5bc4\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-01e0f43 elementor-widget elementor-widget-heading\" data-id=\"01e0f43\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Any other enquiries or questions?<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-bae9357 elementor-widget elementor-widget-text-editor\" data-id=\"bae9357\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>For any other enquiries or questions, please contact us by email at hello@goodtimein.co.uk. We are available Monday-Friday 8am-6pm and will endeavour to respond to all queries as quickly as possible, usually within 24 hours except over the weekend.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-eace6c8 e-flex e-con-boxed e-con e-child\" data-id=\"eace6c8\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-8803a6e elementor-widget elementor-widget-heading\" data-id=\"8803a6e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Other<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-d3d0996 elementor-widget elementor-widget-text-editor\" data-id=\"d3d0996\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>As stated in the terms and conditions of service, this site is protected by an 18+ age gateway and you are purchasing on here accepting that you are 18+ and will not let dependents in the household use your account. On delivery, you could be asked for proof of age if deemed appropriate.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1af050d elementor-widget elementor-widget-text-editor\" data-id=\"1af050d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Global Brands Ltd operating as becocktail.com do not take responsibility for mis-delivery due to incorrect addresses being provided. Please double check delivery details at checkout.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Where do you deliver? At this moment in time, we only accept orders for delivery within the UK (as described by DX as England, Scotland, Wales, Northern Ireland, the Isle of Man, the Isles of Scilly and the Shetland Islands). How much is UK delivery? The cost of UK delivery is calculated at checkout and [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-433","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v21.7 (Yoast SEO v28.2) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Shipping Policy - Be. Cocktails<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/becocktails.com\/?page_id=433\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Shipping Policy\" \/>\n<meta property=\"og:description\" content=\"Where do you deliver? At this moment in time, we only accept orders for delivery within the UK (as described by DX as England, Scotland, Wales, Northern Ireland, the Isle of Man, the Isles of Scilly and the Shetland Islands). How much is UK delivery? The cost of UK delivery is calculated at checkout and [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/becocktails.com\/?page_id=433\" \/>\n<meta property=\"og:site_name\" content=\"Be. Cocktails\" \/>\n<meta property=\"article:modified_time\" content=\"2024-07-16T14:45:46+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/becocktails.com\\\/?page_id=433\",\"url\":\"https:\\\/\\\/becocktails.com\\\/?page_id=433\",\"name\":\"Shipping Policy - Be. Cocktails\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/becocktails.com\\\/#website\"},\"datePublished\":\"2024-01-11T15:53:55+00:00\",\"dateModified\":\"2024-07-16T14:45:46+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/becocktails.com\\\/?page_id=433#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/becocktails.com\\\/?page_id=433\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/becocktails.com\\\/?page_id=433#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/becocktails.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Shipping Policy\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/becocktails.com\\\/#website\",\"url\":\"https:\\\/\\\/becocktails.com\\\/\",\"name\":\"Be. Cocktails\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/becocktails.com\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/becocktails.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/becocktails.com\\\/#organization\",\"name\":\"Be. Cocktails\",\"url\":\"https:\\\/\\\/becocktails.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/becocktails.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/becocktails.com\\\/wp-content\\\/uploads\\\/2024\\\/01\\\/favicon.png\",\"contentUrl\":\"https:\\\/\\\/becocktails.com\\\/wp-content\\\/uploads\\\/2024\\\/01\\\/favicon.png\",\"width\":512,\"height\":512,\"caption\":\"Be. Cocktails\"},\"image\":{\"@id\":\"https:\\\/\\\/becocktails.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Shipping Policy - Be. Cocktails","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/becocktails.com\/?page_id=433","og_locale":"en_GB","og_type":"article","og_title":"Shipping Policy","og_description":"Where do you deliver? At this moment in time, we only accept orders for delivery within the UK (as described by DX as England, Scotland, Wales, Northern Ireland, the Isle of Man, the Isles of Scilly and the Shetland Islands). How much is UK delivery? The cost of UK delivery is calculated at checkout and [&hellip;]","og_url":"https:\/\/becocktails.com\/?page_id=433","og_site_name":"Be. Cocktails","article_modified_time":"2024-07-16T14:45:46+00:00","twitter_card":"summary_large_image","twitter_misc":{"Estimated reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/becocktails.com\/?page_id=433","url":"https:\/\/becocktails.com\/?page_id=433","name":"Shipping Policy - Be. Cocktails","isPartOf":{"@id":"https:\/\/becocktails.com\/#website"},"datePublished":"2024-01-11T15:53:55+00:00","dateModified":"2024-07-16T14:45:46+00:00","breadcrumb":{"@id":"https:\/\/becocktails.com\/?page_id=433#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/becocktails.com\/?page_id=433"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/becocktails.com\/?page_id=433#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/becocktails.com\/"},{"@type":"ListItem","position":2,"name":"Shipping Policy"}]},{"@type":"WebSite","@id":"https:\/\/becocktails.com\/#website","url":"https:\/\/becocktails.com\/","name":"Be. Cocktails","description":"","publisher":{"@id":"https:\/\/becocktails.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/becocktails.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":"Organization","@id":"https:\/\/becocktails.com\/#organization","name":"Be. Cocktails","url":"https:\/\/becocktails.com\/","logo":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/becocktails.com\/#\/schema\/logo\/image\/","url":"https:\/\/becocktails.com\/wp-content\/uploads\/2024\/01\/favicon.png","contentUrl":"https:\/\/becocktails.com\/wp-content\/uploads\/2024\/01\/favicon.png","width":512,"height":512,"caption":"Be. Cocktails"},"image":{"@id":"https:\/\/becocktails.com\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/becocktails.com\/index.php?rest_route=\/wp\/v2\/pages\/433","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/becocktails.com\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/becocktails.com\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/becocktails.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/becocktails.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=433"}],"version-history":[{"count":11,"href":"https:\/\/becocktails.com\/index.php?rest_route=\/wp\/v2\/pages\/433\/revisions"}],"predecessor-version":[{"id":1146,"href":"https:\/\/becocktails.com\/index.php?rest_route=\/wp\/v2\/pages\/433\/revisions\/1146"}],"wp:attachment":[{"href":"https:\/\/becocktails.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=433"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}