The chef figurine is very cute to decor your bakery, all your clients come to your shop will love it,touch it or take a photo. It can be widely used in Kitchen, Bar, Cafe, Bakery and Restaurant.
WELCOME GUEST put it on your countertop to welcome your guest, Chef with charming and kindly smiling face to warm welcome your guest
jQuery(document).ready(function($){
// Intercept clicks on category banners
$('.elementor-section .promo-banner a').on('click', function(e){
e.preventDefault();
// Get the URL of the clicked category (set in Link field)
let targetURL = $(this).attr('href');
// Show loading message
$('#ajax-product-area').html('
Loading products...
');
// Load only the product grid (.products) from that URL
$('#ajax-product-area').load(targetURL + ' .products', function(){
// Smooth scroll to the product area
$('html, body').animate({
scrollTop: $("#ajax-product-area").offset().top - 100
}, 600);
});
});
});