PORTFOLIO
A PROPOS
EXPOSITIONS
ARLES 2026
EXPOSITION DISTILLERIE
COULISSES
BOUTIQUE
TIRAGES LIVE
TIRAGES BACKSTAGE
LIVRES & OBJETS
BON CADEAU
CONTACT
Sélectionner une page
annie-leibovitz-photography- (7)
par
Eric Canto
|
Jan 12, 2020
/* ===== ECANTO — Option cadre noir (+20 €) — partie visible ===== */ (function($){ 'use strict'; if (typeof $ === 'undefined') return; var CADRE_PRIX = 20; function formatEUR(n){ return n.toLocaleString('fr-FR',{minimumFractionDigits:2,maximumFractionDigits:2}) .replace(/\s/g,'\u00a0') + '\u00a0\u20ac'; } function initCadre($form){ if ($form.data('ecCadreInit')) return; $form.data('ecCadreInit', true); var currentPrice = 0; var $wrap = $( '
' + '
' + '
' + '
Ajouter un cadre noir
(+20 \u20ac)
' + '
' + '
' ); var $atc = $form.find('.woocommerce-variation-add-to-cart').first(); if ($atc.length){ $atc.before($wrap); } else { $form.append($wrap); } function formatEligible(){ var val = ($form.find('[name="attribute_format"]').val() || '').toString(); return /21/.test(val) && /30/.test(val); } function renderPrice(){ if (!$wrap.is(':visible') || !currentPrice) return; var $price = $form.find('.single_variation .price').first(); if (!$price.length) return; var checked = $wrap.find('input[name="ec_cadre"]').is(':checked'); var total = checked ? currentPrice + CADRE_PRIX : currentPrice; $price.html('
' + formatEUR(total) + '
'); } function syncCadre(){ if (formatEligible()){ $wrap.show(); } else { $wrap.hide(); $wrap.find('input[name="ec_cadre"]').prop('checked', false); } } $form.on('show_variation', function(e, variation){ currentPrice = parseFloat(variation && variation.display_price) || 0; syncCadre(); renderPrice(); }); $form.on('hide_variation reset_data', function(){ currentPrice = 0; $wrap.hide(); $wrap.find('input[name="ec_cadre"]').prop('checked', false); }); $wrap.on('change', 'input[name="ec_cadre"]', renderPrice); syncCadre(); } jQuery(function(){ jQuery('form.variations_form').each(function(){ initCadre(jQuery(this)); }); }); })(jQuery); /* ===== fin option cadre ===== */