![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/hessa.corals.io/wp-content/themes/kicker/plugins/woocommerce/ |
/* global jQuery, KICKER_STORAGE */ jQuery( document ).on( 'action.ready_kicker', function() { "use strict"; var $window = jQuery( window ), $document = jQuery( document ), $body = jQuery( 'body' ); // Gallery Fullwidth //------------------------------------------- // Make gallery fullwidth if ( $body.hasClass('single-product') ) { var $product = jQuery( '.single_product_gallery_style_fullwidth:not(.single_product_gallery_style_fullwidth_inited)' ).eq(0); if ( $product.length ) { var $gallery = $product.find( '.woocommerce-product-gallery' ); if ( $gallery.length ) { $document.on( 'action.resize_kicker', function() { kicker_woocommerce_stretch_fullwidth(); } ); kicker_woocommerce_stretch_fullwidth(); $product.addClass( 'single_product_gallery_style_fullwidth_inited' ); } } } // Stretch area to full window width function kicker_woocommerce_stretch_fullwidth() { var $page_wrap = $gallery.closest( '.page_wrap' ), page_wrap_offset = $page_wrap.length === 0 ? 0 : $page_wrap.offset().left; if ($page_wrap.length === 0) { $page_wrap = $body; } var offset = -1 * ( page_wrap_offset - $product.offset().left ); document.querySelector('html').style.setProperty( '--theme-var-single-product-gallery-shift', offset+'px' ); } // Gallery 'Grid' - make it masonry //--------------------------------------------- if ( $body.hasClass('single-product') ) { var product_wrap = jQuery( '.single_product_gallery_style_grid:not(.single_product_gallery_style_grid_inited)' ); if ( product_wrap.length ) { product_wrap.addClass( 'single_product_gallery_style_grid_inited' ); // Add gallery wrapper to the masonry selector kicker_add_filter('kicker_filter_masonry_wrap', function( selector ) { selector += ( selector ? ',' : '' ) + '.woocommerce-product-gallery__wrapper'; return selector; }); // Add gallery image to the masonry item selector kicker_add_filter('kicker_filter_masonry_item', function( selector ) { selector += ( selector ? ',' : '' ) + '.woocommerce-product-gallery__image,.woocommerce-product-gallery__video'; return selector; }); } } // Disable lightbox on click 'video_hover' //--------------------------------------------- if ( $body.hasClass('single-product') ) { jQuery( '.woocommerce-product-gallery__image--with_video .trx_addons_popup_link:not(.single_product_gallery_video_inited)' ).each( function() { jQuery(this) .addClass( 'single_product_gallery_video_inited' ) .on( 'click', function( e ) { e.stopPropagation(); } ); } ); } // Bottom bar (sticky) //--------------------------------------------- if ( KICKER_STORAGE['add_to_cart_sticky'] ) { // Show sticky bar on form is out of the window viewport var $form = jQuery( '.summary form.cart' ); if ( $form.length ) { kicker_intersection_observer_add( $form, function( item, enter, data ) { if ( ! enter ) { if ( ! $body.hasClass( 'single_product_bottom_bar_sticky_on' ) ) { $body.addClass( 'single_product_bottom_bar_sticky_on' ); } } else { if ( $body.hasClass( 'single_product_bottom_bar_sticky_on' ) ) { $body.removeClass( 'single_product_bottom_bar_sticky_on' ); } } } ); } // Hide sticky bar on footer is in to the window viewport var $footer = jQuery( '.single_product_bottom_bar_sticky_holder' ); // use '.single_product_bottom_bar_sticky_holder' to hide sticky after whole footer is appear // or '.footer_wrap' to hide sticky before footer is appear if ( $footer.length ) { kicker_intersection_observer_add( $footer, function( item, enter, data ) { if ( ! enter ) { if ( ! $body.hasClass( 'single_product_bottom_bar_sticky_on' ) ) { $body.addClass( 'single_product_bottom_bar_sticky_on' ); } } else { if ( $body.hasClass( 'single_product_bottom_bar_sticky_on' ) ) { $body.removeClass( 'single_product_bottom_bar_sticky_on' ); } } } ); } // Scroll to top on click button 'Select options' (for variable products only) jQuery( '.single_product_bottom_bar_button_select_options' ).on( 'click', function(e) { kicker_document_animate_to( '.variations_form' ); e.preventDefault(); return false; } ); } // Sidebar as filters //--------------------------------------------- jQuery( document ).on( 'action.init_hidden_elements', function( e, $cont ) { $cont.find( '.kicker_woocommerce_filters_button:not(.inited),.sidebar > .sidebar_close:not(.inited),.sidebar_overlay:not(.inited)' ) .addClass( 'inited' ) .on( 'click', function(e) { jQuery( '.sidebar > .sidebar_control' ).trigger( 'click' ); e.preventDefault(); return false; } ); } ); } );