Skip to product information
1 of 1

Aromalilycafe

Plum Pudding (Small)

Plum Pudding (Small)

Regular price $14.00 AUD
Regular price Sale price $14.00 AUD
Sale Sold out
Tax included. Shipping calculated at checkout.

Traditional Handmade Christmas Plum Pudding now comes in a compact small size, still delicious with full of fruit, spices and delicious flavours. Easy to heat on stove or microwave.  

Only the best ingredients are used and is freshly made by one chef by hand in our commercial kitchen. Perfect hamper gift and size, presented with Christmas colours and tied with ribbons.

Serving Suggestion: Best served warm with cream or ice cream.

View full details
document.addEventListener('DOMContentLoaded', function() { const productForm = document.querySelector('product-form form'); if (!productForm) return; const qtyInput = productForm.querySelector('input[name="quantity"]'); const variantIdInput = productForm.querySelector('input[name="id"]'); if (!qtyInput || !variantIdInput || !window.variantLimits) return; function applyVariantLimits() { const vid = variantIdInput.value; const limits = window.variantLimits[vid]; if (!limits) return; let min = parseInt(limits.min) || 1; let max = limits.max !== null ? parseInt(limits.max) : null; qtyInput.min = min; let current = parseInt(qtyInput.value) || 0; if (current < min) current = min; if (max && max > 0) { qtyInput.max = max; if (current > max) current = max; } else { qtyInput.removeAttribute('max'); } qtyInput.value = current; } applyVariantLimits(); productForm.addEventListener('change', applyVariantLimits); });