>
jQuery(function($){
$(document.body).on('added_to_cart', function(event, fragments, cart_hash, $button){
showCartToast($button);
});
function showCartToast($button){
let productImage = '';
let productTitle = '';
if($button && $button.closest('.product').length){
productImage = $button.closest('.product').find('img').first().attr('src');
productTitle = $button.closest('.product').find('.woocommerce-loop-product__title').first().text();
}
if(!productImage){
productImage = $('.woocommerce-product-gallery__image img.wp-post-image').attr('src');
}
if(!productTitle){
productTitle = $('.product_title').first().text();
}
if(!productImage) productImage = 'https://multitrend.com.tr/wp-content/uploads/woocommerce-placeholder-300x300.webp';
$('#toast-img').attr('src', productImage);
$('#toast-title').text(productTitle);
$('#cart-toast').fadeIn();
setTimeout(function(){ $('#cart-toast').fadeOut(); }, 5000);
}
$('#cart-toast .continue').on('click', function(e){
e.preventDefault();
window.location.href = "https://multitrend.com.tr/magaza/";
});
});