20220612-fichtelberg-radmarathon-2022-4278
jQuery(document).ready(function($){
$('input[name="sunshine_product"]').change(function(){
$('#sunshine-add-qty').show();
if ($(this).closest('li').hasClass('sunshine-download')) {
if ($(this).is(':checked')) {
$('#sunshine-add-qty').hide();
$('#sunshine-add-to-cart').append('');
}
} else {
$('.sunshine-download-qty').remove();
}
});
});
jQuery(document).ready(function($){
$('input[name="sunshine_product"]').click(function(){
var product_id = $(this).val();
$('.sunshine-product-options').hide();
$('#sunshine-product-options-'+product_id).show();
});
$('.sunshine-add-to-cart').click(function(){
$('.sunshine-lightbox-product-options').toggle();
});
});
Kommentar hinzufügen
Du musst angemeldet sein, um einen Kommentar abzugeben.