Welcome to Cigars Daily, your neighborhood cigar shop online. Sign-up for our newsletter to receive information on upcoming deals and the latest Cigars Daily news!
*We will NOT share your information with anyone. Must be 21 or over to participate in this promotion. Offer valid for new subscribers only. You will receive a few emails to confirm yours subscription. Once fully confirmed (double opt-in), and after your place your first order you will be entered into the drawing.
jQuery(document).ready(function($){
// Wait for Quick View to open
$(document).on('afterQuickView', function(){
var $popup = $('.quick-view');
if($popup.length){
// Move Add to Cart & Variations after price
var $price = $popup.find('.summary .price');
var $cartForm = $popup.find('.single_variation_wrap, form.cart');
if($price.length && $cartForm.length){
$cartForm.insertAfter($price);
}
// Move description to the bottom of summary
var $desc = $popup.find('.woocommerce-product-details__short-description');
var $summary = $popup.find('.summary');
if($desc.length && $summary.length){
$desc.appendTo($summary);
}
}
});
});