get_gallery_image_ids()[0] ) ? wc_get_product()->get_gallery_image_ids()[0] : null; if ( $image_id ) { echo wp_get_attachment_image( $image_id, 'woocommerce_thumbnail', '', [ 'class' => 'arendelle-product-image-back'] ) ; } } } /** * Wislist count */ if ( defined( 'YITH_WCWL' ) && ! function_exists( 'arendelle_wishlist_count' ) ) { function arendelle_wishlist_count() { ob_start(); ?> yith_wcwl_count_all_products() ) ); } add_action( 'wp_ajax_yith_wcwl_update_wishlist_count', 'arendelle_wishlist_ajax_update_count' ); add_action( 'wp_ajax_nopriv_yith_wcwl_update_wishlist_count', 'arendelle_wishlist_ajax_update_count' ); } /** * Wislist JS */ if ( defined( 'YITH_WCWL' ) && ! function_exists( 'arendelle_wishlist_enqueue_script' ) ) { function arendelle_wishlist_enqueue_script() { wp_add_inline_script( 'jquery-yith-wcwl', " jQuery( function( $ ) { $( document ).on( 'added_to_wishlist removed_from_wishlist', function() { $.get( yith_wcwl_l10n.ajax_url, { action: 'yith_wcwl_update_wishlist_count' }, function( data ) { if ( 0 === data.count ) { $('.arendelle-menu-wishlist__count').addClass('d-none'); } else { $('.arendelle-menu-wishlist__count').removeClass('d-none') } $('.yith-wcwl-items-count').html( data.count ); } ); } ); } ); " ); } add_action( 'wp_enqueue_scripts', 'arendelle_wishlist_enqueue_script', 20 ); } /** * WooCommerce cart */ if ( ! function_exists( 'arendelle_woo_cart_icon' ) ) { function arendelle_woo_cart_icon( $minicart_show = 'false', $id = '' ) { if ( ! arendelle_is_woocommerce_activated() ) { return; } $count = WC()->cart->get_cart_contents_count(); $minicart_show = $minicart_show === 'true' ? true : false; ?>
cart->get_cart_contents_count(); // count if ( 0 === $count ) { $fragments['.arendelle-menu-cart__count'] = ''; } else { $fragments['.arendelle-menu-cart__count'] = ''; } // mini-cart ob_start(); echo '