Free Delivery for Orders Above £60.00

Fast & Secure Payments 

Free Delivery for Orders Above £60.00

Fast & Secure Payments 

Loading Events

Macaron Masterclass

July 20, 2024 @ 10:30 - 12:30

The Masterclass with Florian Poirot, UK Pastry Champion takes place at our kitchen in Malton Enterprise Park.

This is a Hands on / Demo Class where we will all together bake a large and small macaron cakes.

You will learn how to make the macaron dough & our delicious cream, but also how to pipe, build and decorate your cake.

At the end of the class, you will go home with recipes and 2 individual cakes.

It runs from 10:30 AM to 12:30 / 1:00 PM.

The maximum number of participants is 12.

Perfect gift for any of your loved one from 14 years old 🙂

Tickets

The numbers below include tickets for this event already in your cart. Clicking "Get Tickets" will allow you to edit any existing attendee information as well as change ticket quantities.
Tickets are no longer available

20 people are attending Macaron Masterclass

Share This Event

  • This event has passed.

Details

  • Date: July 20, 2024
  • Time:
    10:30 - 12:30
  • Cost: £85.00
  • Event Category:

Venue

  • Thorialine
  • 17 Cherry Farm Close
    Malton, YO17 6AS United Kingdom

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; } }); }); });