you are in

Click & collect

Chocolate Favours with personalised sticker – C&C

Chocolate Favours with personalised sticker – C&C

£3.75

Choose your selection of 2 chocolate bonbons to be included in each favour box.
Why not personalising your favour with your names, date of the event or your logo?
    Choose Card Type
    Custom Message

Our shop is open for collections Tuesdays to Saturdays 10:00am to 4:00pm

If there is any issue with your product availability we will contact you before your chosen collection date, or please feel free to contact us on 07947 587 382.

Our Chocolate Favours with personalised sticker are the perfect treat for any occasion.

They are sure to be a hit with any chocolate lover, and the personalised details make them extra special. Indulge in the rich taste of our chocolate favours, and make your next event unforgettable.

Each favour contains two of our homemade ganache & praline chocolate bonbons enrobed with tasty Milk 40% or Dark 63% Chocolate, ensuring a decadent and delicious taste.

The personalised sticker adds a special touch, making them an ideal gift for weddings, birthdays, and corporate events. It can include names / initials and date of your event. If you have your own design, we may be able to print it on our label (380 mm x 25 mm). Just send it to our email address on JPEG format to [email protected] allowing us to check that we can use it.

The chocolate favours can be kept up to 2 weeks at room temperature.

Please contact us within 10 working days prior to your event to discuss any specific requirement on 07947 587 382.

Minimum order: 10 favours including same sticker & ribbon colour

Never miss an update

Add your email to receive our newsletters.

Subscription Form
My cart
🎁 Only £60.00 away from free shipping to GB 🇬🇧
Your cart is empty.

Looks like you haven't made a choice yet.

document.addEventListener("cartpops.afterOpen", function () { const btn = document.querySelector(".cpops-checkout-secondary.cpops-custom-btn"); if (!btn) return; // Default URL let targetURL = "https://florianpoirot.com/#shop"; // Get all product rows in CartPops const items = document.querySelectorAll(".cpops-cart-line-items .bis_check_checked"); if (!items.length) { btn.href = targetURL; return; } let foundHomeDelivery = false; let foundClickCollect = false; let processed = 0; items.forEach(item => { // Find the hidden WC cart key input const cartKeyInput = item.querySelector("input[name='cart_item_key']"); if (!cartKeyInput) return; const cartItemKey = cartKeyInput.value; // Get cart data from WooCommerce endpoint fetch("/?wc-ajax=get_cart_contents") .then(res => res.json()) .then(cart => { const cartItem = cart.find(i => i.key === cartItemKey); if (!cartItem) return; const productID = cartItem.product_id; // Fetch product categories return fetch(`/wp-json/wc/v3/products/${productID}?per_page=1`, { headers: { "Accept": "application/json" } }).then(res => res.json()) .then(product => { if (!product.categories) return; product.categories.forEach(cat => { const slug = cat.slug.toLowerCase(); if (slug === "home-delivery") foundHomeDelivery = true; if (slug === "click-collect") foundClickCollect = true; }); }); }) .finally(() => { processed++; // After all products are processed if (processed === items.length) { if (foundHomeDelivery) { targetURL = "https://florianpoirot.com/home-delivery/"; } else if (foundClickCollect) { targetURL = "https://florianpoirot.com/click-and-collect/"; } btn.href = targetURL; } }); }); });