53,50 
Ta izdelek ima več različic. Možnosti lahko izberete na strani izdelka
jQuery(function($){ var hash = window.location.hash; if(hash && hash.includes('tab-title-')){ var tab = $(hash.replace('tab-title','tab')); if(tab.length){ tab.trigger('click'); $('html, body').animate({ scrollTop: $('.product-tabs').offset().top - 100 }, 300); } } });(function($){ function toggleBasePrice($form){ var $scope = $form && $form.length ? $form.closest('.product-main') : $('.product-main'); var $base = $scope.find('p.price.product-page-price'); var $var = $scope.find('.single_variation_wrap .woocommerce-variation-price');// Woo variacije včasih najprej pokažejo wrapper, potem šele text var hasVarPrice = $var.length && $.trim($var.text()).length > 0;if (hasVarPrice) $base.hide(); else $base.show(); }$(document).ready(function(){ $('.variations_form').each(function(){ var $form = $(this); toggleBasePrice($form);// WooCommerce variation eventi (različne verzije/teme) $form.on('found_variation show_variation', function(){ setTimeout(function(){ toggleBasePrice($form); }, 0); });$form.on('reset_data hide_variation', function(){ setTimeout(function(){ toggleBasePrice($form); }, 0); });$form.on('woocommerce_variation_has_changed', function(){ setTimeout(function(){ toggleBasePrice($form); }, 0); }); }); }); })(jQuery);