//Wrapping all JavaScript code into a IIFE function for prevent global variables creation (function(){ "use strict"; function initShopTables() { jQuery('div.quantity').each(function () { var $this = jQuery(this); if ($this.find('.plus').length) { return; } $this.find('[type="number"]') .before('') .after('') .end() .parent() .find('button') .addClass('theme_button color4') .prepend(''); }); jQuery('.plus, .minus').on('click', function (e) { var numberField = jQuery(this).parent().find('[type="number"]'); var currentVal = numberField.val(); var sign = jQuery(this).val(); if (sign === '-') { if (currentVal > 1) { numberField.val(parseFloat(currentVal) - 1); } } else { numberField.val(parseFloat(currentVal) + 1); } numberField.trigger('change'); }); } // jQuery(document).ready(function () { jQuery(document).ready(function () { ////////// //layout// ////////// //tables - reloaded - needs CSS initShopTables(); jQuery('.shop_attributes').addClass('table table-striped'); //woo cart update events: //- update_checkout //- updated_wc_div //- updated_cart_totals //- updated_shipping_method //- applied_coupon //- removed_coupon jQuery('body').on('updated_cart_totals', function (e) { initShopTables(); }); jQuery('.woocommerce-review-link').wrap(''); //single products variants table jQuery('td.label').removeClass('label'); //sinlge product tabs jQuery('.woocommerce-tabs ul.wc-tabs').addClass('nav nav-tabs'); jQuery('.woocommerce-tabs .wc-tab') .removeClass('panel') .wrapAll('
'); //woocommerce pagination jQuery('.woocommerce-pagination') .addClass('comment-navigation') .find('ul.page-numbers') .addClass('pagination') .find('.current') .parent().addClass('active'); //buttons in cart widget - moded to CSS // jQuery('p.buttons').addClass('theme_buttons'); //woo widgets jQuery('.widget_top_rated_products, .widget_recent_reviews, .widget_recently_viewed_products, .widget_products, .widget_shopping_cart, .widget_layered_nav_filters, .widget_rating_filter').addClass('widget_popular_entries darklinks'); jQuery('.widget_product_categories, .widget_layered_nav').addClass('widget_categories greylinks color2') .find('span.count') .addClass('highlight4'); // jQuery('.widget_product_search').addClass('widget_search'); // jQuery('.widget_product_search').find('input[type="submit"]').val(''); jQuery('.widget_product_search').find('input[type="submit"]').replaceWith(''); jQuery('.widget_product_tag_cloud').addClass('widget_tag_cloud'); jQuery('.widget_shopping_cart').find('.buttons a').addClass('theme_button').end().find('.wc-forward:not(.checkout)').addClass('color1'); jQuery('.price_slider_amount').find('.button').addClass('theme_button color4 min_width_button'); //woocommerce comment form jQuery('#review_form .comment-form').find('input, textarea').each(function () { var $this = jQuery(this); var placeholder = $this.parent().find('label').text().replace('*', ''); $this.attr('placeholder', placeholder); // if( $this.attr('type') == 'submit' ) { // $this.addClass('theme_button color1 wide_button'); // } }); //view toggler jQuery('#toggle_shop_view').on('click', function (e) { e.preventDefault(); jQuery(this).toggleClass('grid-view'); jQuery('#products, ul.products').toggleClass('grid-view list-view'); if (jQuery.cookie) { if (jQuery('#products, ul.products').hasClass('list-view')) { jQuery.cookie('grid-view', 'list-view'); } else { jQuery.cookie('grid-view', 'grid-view'); } } }); if (jQuery.cookie) { if (jQuery.cookie('grid-view') == 'list-view') { jQuery('#toggle_shop_view').trigger('click'); } } //add review button // jQuery('.review-link, .woocommerce-review-link').on('click', function( e ) { // var thisLink = jQuery(this); // var reviewTabLink = jQuery('a[href="#reviews_tab"]'); // //show tab only if it's hidden // if (!reviewTabLink.parent().hasClass('active')) { // reviewTabLink // .tab('show') // .on('shown.bs.tab', function (e) { // jQuery(window).scrollTo(jQuery(thisLink).attr('href'), 400); // }) // } // setTimeout(function () { // jQuery(window).scrollTo(jQuery(thisLink).attr('href'), 400); // }, 400); // // }); //remove product from cart // jQuery('a.remove').on('click', function( e ) { // e.preventDefault(); // jQuery(this).closest('tr, .media').remove(); // }); //price filter // if (jQuery().slider) { // jQuery( ".slider-range-price" ).slider({ // range: true, // min: 0, // max: 100000, // values: [ 1500, 30000 ], // slide: function( event, ui ) { // jQuery( ".slider_price_min" ).val( ui.values[ 0 ] ); // jQuery( ".slider_price_max" ).val( ui.values[ 1 ] ); // } // }); // jQuery( ".slider_price_min" ).val( jQuery( ".slider-range-price" ).slider( "values", 0 ) ); // jQuery( ".slider_price_max" ).val( jQuery( ".slider-range-price" ).slider( "values", 1 ) ); // } //color filter jQuery(".color-filters").find("a[data-background-color]").each(function () { jQuery(this).css({"background-color": jQuery(this).data("background-color")}); }); ///////////// //Carousels// ///////////// //woocommerce thumbnails jQuery('.thumbnails, .thumbnails-wrap').addClass('owl-carousel').owlCarousel({ loop: false, margin: 10, nav: false, dots: true, items: 3, }); //single product gallery jQuery('[data-thumb]').find('a').each(function () { jQuery(this).attr('data-gal', 'prettyPhoto[gal]'); }); //woocommerce related products, upsells products jQuery('.related.products ul.products, .upsells.products ul.products, .cross-sells ul.products').addClass('owl-carousel').owlCarousel({ loop: false, margin: 30, nav: false, dots: true, items: 3, responsive: { 0: { items: 1 }, 767: { items: 2 }, 992: { items: 2 }, 1200: { items: 3 } }, }) .addClass('top-right-nav'); //quantity arrows jQuery('').insertAfter('input.minus'); jQuery('').insertAfter('input.plus'); }); //end of IIFE function })();