'', 'content' => array()); $yith_wishlist = isset($_REQUEST['reload_yith_wishlist']) && $_REQUEST['reload_yith_wishlist'] ? true : false; // if (NASA_WISHLIST_ENABLE && $yith_wishlist) { // $data['content']['#nasa-wishlist-sidebar-content'] = elessi_mini_wishlist_sidebar(true); // } if (defined('NASA_PLG_CACHE_ACTIVE') && NASA_PLG_CACHE_ACTIVE) { if (NASA_WISHLIST_ENABLE && $yith_wishlist) { $data['content']['.nasa-wishlist-count.wishlist-number'] = elessi_get_count_wishlist(); } } // Reload logged in / out // if ( // (NASA_CORE_USER_LOGGED && isset($_REQUEST['reload_my_account']) && $_REQUEST['reload_my_account']) || // (!NASA_CORE_USER_LOGGED && isset($_REQUEST['reload_login_register']) && $_REQUEST['reload_login_register'])) { // $data['content']['.nasa-menus-account'] = elessi_tiny_account(true); // } if (!empty($data['content'])) { $data['success'] = '1'; } wp_send_json($data); } /** * Get a refreshed cart fragment, including the mini cart HTML. */ public static function nasa_quick_view() { global $nasa_opt; $result = array( 'content' => '' ); if (isset($_REQUEST["product"])) { $cache_enable = !isset($nasa_opt['nasa_cache_qv']) || $nasa_opt['nasa_cache_qv'] ? true : false; $key_cache = false; $qv_content = false; $style_quickview = isset($nasa_opt['style_quickview']) && in_array($nasa_opt['style_quickview'], array('sidebar', 'popup')) ? $nasa_opt['style_quickview'] : 'sidebar'; $prod_id = intval($_REQUEST["product"]); $prod_id_org = $prod_id; if ($cache_enable && function_exists('nasa_get_cache')) { $currency = function_exists('get_woocommerce_currency') ? get_woocommerce_currency() : null; if ($currency) { $key_cache = $prod_id_org . '_' . $style_quickview . '_' . $currency; $qv_content = nasa_get_cache($key_cache, 'nasa-quickview'); } } if (!$qv_content) { global $product, $post; self::init_wpb_shortcodes(); $post_object = get_post($prod_id); setup_postdata($GLOBALS['post'] =& $post_object); $GLOBALS['product'] = wc_get_product($prod_id); $product_lightbox = $GLOBALS['product']; if ($product_lightbox) { $product_type = $product_lightbox->get_type(); if ($product_type == 'variation') { $variation_data = wc_get_product_variation_attributes($prod_id); $prod_id = wp_get_post_parent_id($prod_id); $post_object = get_post($prod_id); setup_postdata($GLOBALS['post'] =& $post_object); $GLOBALS['product'] = wc_get_product($prod_id); if (!empty($variation_data)) { foreach ($variation_data as $key => $value) { if ($value != '') { $_REQUEST[$key] = $value; } } } } if ($product_type == 'grouped') { $GLOBALS['product_lightbox'] = $product_lightbox; } $file = ELESSI_CHILD_PATH . '/includes/nasa-single-product-lightbox.php'; ob_start(); include is_file($file) ? $file : ELESSI_THEME_PATH . '/includes/nasa-single-product-lightbox.php'; $qv_content = ob_get_clean(); if (function_exists('nasa_set_cache') && $key_cache) { nasa_set_cache($key_cache, 'nasa-quickview', $qv_content); } } } $result['content'] = $qv_content; } wp_send_json($result); } /** * Quick view gallery variation */ public static function nasa_quickview_gallery_variation() { $data = isset($_REQUEST['data']) ? $_REQUEST['data'] : array(); if (!isset($data['variation_id'])) { die; } $productId = $data['variation_id']; $main_id = isset($data['main_id']) && (int) $data['main_id'] ? (int) $data['main_id'] : 0; $imageMain = $main_id ? wp_get_attachment_image($main_id, apply_filters('woocommerce_gallery_image_size', 'woocommerce_single')) : null; $hasThumb = (bool) $imageMain; $attachment_ids = array(); if (isset($data['gallery'])) { $attachments = $data['gallery'] ? explode(',', $data['gallery']) : array(); if ($attachments) { foreach ($attachments as $img_id) { $img_id = (int) trim($img_id); if ($img_id) { $attachment_ids[] = $img_id; } } } } $show_images = isset($data['show_images']) ? $data['show_images'] : apply_filters('nasa_quickview_number_imgs', 2); $result = array(); /** * Main images */ $file = ELESSI_CHILD_PATH . '/includes/nasa-single-product-lightbox-gallery.php'; ob_start(); include is_file($file) ? $file : ELESSI_THEME_PATH . '/includes/nasa-single-product-lightbox-gallery.php'; $result['quickview_gallery'] = ob_get_clean(); wp_send_json($result); } /** * Gallery variation */ public static function nasa_get_gallery_variation() { $data = isset($_REQUEST['data']) ? $_REQUEST['data'] : array(); if (!isset($data['variation_id'])) { die; } $productId = $data['variation_id']; $main_id = isset($data['main_id']) && (int) $data['main_id'] ? (int) $data['main_id'] : 0; $gallery_id = array(); if (isset($data['gallery'])) { $attachments = $data['gallery'] ? explode(',', $data['gallery']) : array(); if ($attachments) { foreach ($attachments as $img_id) { $img_id = (int) trim($img_id); if ($img_id) { $gallery_id[] = $img_id; } } } } $attachment_count = count($gallery_id); $result = array(); /** * Main images */ $file = ELESSI_CHILD_PATH . '/includes/nasa-variation-main-images.php'; ob_start(); include is_file($file) ? $file : ELESSI_THEME_PATH . '/includes/nasa-variation-main-images.php'; $result['main_image'] = ob_get_clean(); /** * Thumb images */ $file2 = ELESSI_CHILD_PATH . '/includes/nasa-variation-thumb-images.php'; ob_start(); include is_file($file2) ? $file2 : ELESSI_THEME_PATH . '/includes/nasa-variation-thumb-images.php'; $result['thumb_image'] = ob_get_clean(); /** * Deal time */ if (isset($data['deal_variation']) && $data['deal_variation']) { $time_from = get_post_meta($productId, '_sale_price_dates_from', true); $time_to = get_post_meta($productId, '_sale_price_dates_to', true); $time_sale = ((int) $time_to < NASA_TIME_NOW || (int) $time_from > NASA_TIME_NOW) ? false : (int) $time_to; if ($time_sale) { $result['deal_variation'] = elessi_time_sale($time_sale); } } wp_send_json($result); } /** * Get Deal variation */ public static function nasa_get_deal_variation() { $result = array('success' => '0'); if (isset($_REQUEST["pid"])) { $productId = $_REQUEST["pid"]; $time_from = get_post_meta($productId, '_sale_price_dates_from', true); $time_to = get_post_meta($productId, '_sale_price_dates_to', true); $time_sale = ((int) $time_to < NASA_TIME_NOW || (int) $time_from > NASA_TIME_NOW) ? false : (int) $time_to; $result['content'] = elessi_time_sale($time_sale); if ($result['content'] !== '') { $result['success'] = '1'; } } wp_send_json($result); } /** * validate variation */ protected static function nasa_validate_variation($product, $variation_id, $variation, $quantity) { if (empty($variation_id) || empty($product)) { return array('validate' => false); } $missing_attributes = array(); $variations = array(); $attributes = $product->get_attributes(); $variation_data = wc_get_product_variation_attributes($variation_id); foreach ($attributes as $attribute) { if (!$attribute['is_variation']) { continue; } $taxonomy = 'attribute_' . sanitize_title($attribute['name']); if (isset($variation[$taxonomy])) { // Get value from post data if ($attribute['is_taxonomy']) { // Don't use wc_clean as it destroys sanitized characters $value = sanitize_title(stripslashes($variation[$taxonomy])); } else { $value = wc_clean(stripslashes($variation[$taxonomy])); } if (trim($value) == '') { $missing_attributes[] = wc_attribute_label($attribute['name']); } else { // Get valid value from variation $valid_value = isset($variation_data[$taxonomy]) ? $variation_data[$taxonomy] : ''; // Allow if valid or show error. if ($valid_value === $value || (in_array($value, $attribute->get_slugs()))) { $variations[$taxonomy] = $value; } else { return array('validate' => false); } } } else { $missing_attributes[] = wc_attribute_label($attribute['name']); } } if (!empty($missing_attributes)) { return array( 'validate' => false, 'missing_attributes' => $missing_attributes ); } $passed_validation = apply_filters('woocommerce_add_to_cart_validation', true, $product->get_id(), $quantity, $variation_id, $variations); return array( 'validate' => $passed_validation ); } /** * Single add to cart | Quick view add to cart */ public static function nasa_single_add_to_cart() { /** * Add to cart in single */ if (isset($_REQUEST['add-to-cart']) && is_numeric(wp_unslash($_REQUEST['add-to-cart']))) { $product_id = wp_unslash($_REQUEST['add-to-cart']); $error = (0 === wc_notice_count('error')) ? false : true; $woo_mess = wc_print_notices(true); $data = array(); /** * Error Add to Cart */ if ($error) { $data['error'] = $error; $data['message'] = $woo_mess; $data['product_url'] = apply_filters('woocommerce_cart_redirect_after_error', get_permalink($product_id), $product_id); } ob_start(); woocommerce_mini_cart(); $mini_cart = ob_get_clean(); $frag_mess = empty($woo_mess) ? '
' : $woo_mess; $data['fragments'] = apply_filters( 'woocommerce_add_to_cart_fragments', array( 'div.widget_shopping_cart_content' => '', '.woocommerce-message' => $frag_mess ) ); $data['cart_hash'] = WC()->cart->get_cart_hash(); /** * Clear Old Notices */ wc_clear_notices(); wp_send_json($data); } /** * Add to cart in Loop */ else { /** * Clear Old Notices */ wc_clear_notices(); if (!isset($_REQUEST['product_id']) || !is_numeric(wp_unslash($_REQUEST['product_id']))){ wc_add_notice(esc_html__('Sorry, Product is not existing.', 'elessi-theme'), 'error'); wp_send_json(array( 'error' => true, 'message' => wc_print_notices(true) )); /** * Clear Old Notices */ wc_clear_notices(); wp_die(); } $error = false; $product_id = apply_filters('woocommerce_add_to_cart_product_id', absint($_REQUEST['product_id'])); $quantity = empty($_REQUEST['quantity']) ? 1 : wc_stock_amount($_REQUEST['quantity']); $type = (!isset($_REQUEST['product_type']) || !in_array($_REQUEST['product_type'], array('simple', 'variation', 'variable'))) ? false : $_REQUEST['product_type']; $variation_id = false; if (!$type) { wc_add_notice(esc_html__('Sorry, Product is not existing.', 'elessi-theme'), 'error'); wp_send_json(array( 'error' => true, 'message' => wc_print_notices(true) )); wp_die(); } $variation = isset($_REQUEST['variation']) ? $_REQUEST['variation'] : array(); $validate_attr = array('validate' => true); if ($type == 'variation') { if (!isset($_REQUEST['variation_id']) || !$_REQUEST['variation_id']) { $variation_id = $product_id; $product_id = wp_get_post_parent_id($product_id); $type = 'variable'; } else { $variation_id = (int) $_REQUEST['variation_id']; } } $passed_validation = apply_filters('woocommerce_add_to_cart_validation', true, $product_id, $quantity); $product_status = get_post_status($product_id); $product = wc_get_product((int) $product_id); $product_type = false; if (!$product) { $error = true; } else { $product_type = $product->get_type(); if ((!$variation || !$variation_id) && $product_type == 'variable'){ $error = true; } if (!$error && $product_type == 'variable') { $validate_attr = self::nasa_validate_variation($product, $variation_id, $variation, $quantity); } } if (!$error && $validate_attr['validate'] && $passed_validation && 'publish' === $product_status && WC()->cart->add_to_cart($product_id, $quantity, $variation_id, $variation)) { do_action('woocommerce_ajax_added_to_cart', $product_id); if ('yes' !== get_option('woocommerce_cart_redirect_after_add')) { // Return fragments ob_start(); woocommerce_mini_cart(); $mini_cart = ob_get_clean(); // Fragments and mini cart are returned $data = array( 'fragments' => apply_filters( 'woocommerce_add_to_cart_fragments', array( 'div.widget_shopping_cart_content' => '' ) ), 'cart_hash' => WC()->cart->get_cart_hash() ); } else { wc_add_to_cart_message(array($product_id => $quantity), true); $data = array( 'redirect' => wc_get_cart_url() ); } // Remove wishlist if (NASA_WISHLIST_ENABLE && $product_type && $product_type != 'external' && get_option('yith_wcwl_remove_after_add_to_cart') == 'yes') { $nasa_logined_id = get_current_user_id(); $detail = isset($_REQUEST['data_wislist']) ? $_REQUEST['data_wislist'] : array(); if (!empty($detail) && isset($detail['from_wishlist']) && $detail['from_wishlist'] == '1') { $detail['remove_from_wishlist'] = $product_id; $detail['user_id'] = $nasa_logined_id; $data['wishlist'] = ''; $data['wishlistcount'] = 0; /** * Yith_WCWL 2.x or Lower */ if (!NASA_WISHLIST_NEW_VER) { if ($nasa_logined_id) { $nasa_wishlist = new YITH_WCWL($detail); if (elessi_remove_wishlist_item($nasa_wishlist)) { $data['wishlist'] = elessi_mini_wishlist_sidebar(true); $count = yith_wcwl_count_products(); global $nasa_opt; if (!isset($nasa_opt['compact_number']) || $nasa_opt['compact_number']) { $count = (int) $count > 9 ? '9+' : (int) $count; } $data['wishlistcount'] = $count; } } } /** * Yith_WCWL 3x or Higher */ else { try { YITH_WCWL()->remove($detail); $data['wishlist'] = elessi_mini_wishlist_sidebar(true); $count = yith_wcwl_count_products(); global $nasa_opt; if (!isset($nasa_opt['compact_number']) || $nasa_opt['compact_number']) { $count = (int) $count > 9 ? '9+' : (int) $count; } $data['wishlistcount'] = $count; } catch (Exception $e){ // $data['message'] = $e->getMessage(); } } } } wp_send_json($data); } else { // If there was an error adding to the cart, redirect to the product page to show any errors if (isset($validate_attr['missing_attributes'])) { wc_add_notice(sprintf(_n('%s is a required field', '%s are required fields', count($validate_attr['missing_attributes']), 'elessi-theme'), wc_format_list_of_items($validate_attr['missing_attributes'])), 'error'); } else { wc_add_notice(esc_html__('Sorry, Maybe product empty in stock.', 'elessi-theme'), 'error'); } $data = array( 'error' => true, 'message' => wc_print_notices(true), 'product_url' => apply_filters('woocommerce_cart_redirect_after_error', get_permalink($product_id), $product_id) ); /** * Clear Old Notices */ wc_clear_notices(); wp_send_json($data); } } } /** * Combo product */ public static function nasa_combo_products(){ $output = array(); if (!defined('YITH_WCPB')) { wp_send_json($output); } global $woocommerce, $nasa_opt; if (!$woocommerce || !isset($_REQUEST['id']) || !(int) $_REQUEST['id']){ wp_send_json($output); } $product = wc_get_product((int) $_REQUEST['id']); if ($product->get_type() != NASA_COMBO_TYPE || !$combo = $product->get_bundled_items()) { wp_send_json($output); } $file = ELESSI_CHILD_PATH . '/includes/nasa-combo-products.php'; $file = is_file($file) ? $file : ELESSI_THEME_PATH . '/includes/nasa-combo-products.php'; ob_start(); include $file; $output['content'] = ob_get_clean(); wp_send_json($output); } /** * Load compare in bottom * * Not used from 5.1.5 */ public static function nasa_load_compare() { $data = array('success' => '0', 'content' => ''); ob_start(); do_action('nasa_show_mini_compare'); $data['content'] = ob_get_clean(); if (!empty($data['content'])) { $data['success'] = '1'; } wp_send_json($data); } /** * Add compare item */ public static function nasa_add_compare_product() { $result = array( 'result_compare' => 'error', 'mess_compare' => esc_html__('Error!', 'elessi-theme'), 'mini_compare' => 'no-change', 'count_compare' => 0 ); if (!isset($_REQUEST['pid']) || !(int) $_REQUEST['pid']) { wp_send_json($result); wp_die(); } global $nasa_opt, $yith_woocompare; $nasa_compare = isset($yith_woocompare->obj) ? $yith_woocompare->obj : $yith_woocompare; if (!$nasa_compare) { wp_send_json($result); wp_die(); } $max_compare = isset($nasa_opt['max_compare']) ? (int) $nasa_opt['max_compare'] : 4; if (!in_array((int) $_REQUEST['pid'], $nasa_compare->products_list)) { if (count($nasa_compare->products_list) >= $max_compare) { while (count($nasa_compare->products_list) >= $max_compare) { array_shift($nasa_compare->products_list); } } $nasa_compare->add_product_to_compare((int) $_REQUEST['pid']); $result['mess_compare'] = esc_html__('Product added to compare !', 'elessi-theme'); } else { $result['mess_compare'] = esc_html__('Product already exists in Compare list !', 'elessi-theme'); } ob_start(); do_action('nasa_show_mini_compare'); $result['mini_compare'] = ob_get_clean(); if (isset($_REQUEST['compare_table']) && $_REQUEST['compare_table']) { $result['result_table'] = elessi_products_compare_content(); } $result['count_compare'] = count($nasa_compare->products_list); $result['result_compare'] = 'success'; wp_send_json($result); } /** * Remove compare item */ public static function nasa_remove_compare_product() { $result = array( 'result_compare' => 'error', 'mess_compare' => esc_html__('Error!', 'elessi-theme'), 'mini_compare' => 'no-change', 'count_compare' => 0 ); if (!isset($_REQUEST['pid']) || !(int) $_REQUEST['pid']) { wp_send_json($result); wp_die(); } global $yith_woocompare; $nasa_compare = isset($yith_woocompare->obj) ? $yith_woocompare->obj : $yith_woocompare; if (!$nasa_compare) { wp_send_json($result); wp_die(); } if (in_array((int) $_REQUEST['pid'], $nasa_compare->products_list)) { $nasa_compare->remove_product_from_compare((int) $_REQUEST['pid']); $result['mess_compare'] = esc_html__('Removed product from compare !', 'elessi-theme'); } else { $result['mess_compare'] = esc_html__('Product not already exists in Compare list !', 'elessi-theme'); } ob_start(); do_action('nasa_show_mini_compare'); $result['mini_compare'] = ob_get_clean(); if (isset($_REQUEST['compare_table']) && $_REQUEST['compare_table']) { $result['result_table'] = elessi_products_compare_content(); } $result['count_compare'] = count($nasa_compare->products_list); $result['result_compare'] = 'success'; wp_send_json($result); } /** * Remove all item compare */ public static function nasa_remove_all_compare() { $result = array( 'result_compare' => 'error', 'mess_compare' => esc_html__('Error!', 'elessi-theme'), 'mini_compare' => 'no-change', 'count_compare' => 0 ); global $yith_woocompare; $nasa_compare = isset($yith_woocompare->obj) ? $yith_woocompare->obj : $yith_woocompare; if (!$nasa_compare) { wp_send_json($result); wp_die(); } if (!empty($nasa_compare->products_list)) { $nasa_compare->remove_product_from_compare('all'); $result['mess_compare'] = esc_html__('Removed all products from compare !', 'elessi-theme'); } else { $result['mess_compare'] = esc_html__('Compare products were empty !', 'elessi-theme'); } ob_start(); do_action('nasa_show_mini_compare'); $result['mini_compare'] = ob_get_clean(); if (isset($_REQUEST['compare_table']) && $_REQUEST['compare_table']) { $result['result_table'] = elessi_products_compare_content(); } $result['count_compare'] = count($nasa_compare->products_list); $result['result_compare'] = 'success'; wp_send_json($result); } /** * After Added To Cart get Cross sell * * Get Cross-Sells product show in Mini Cart | Popup Cart v2 */ public static function nasa_get_cross_sell_mini_cart() { $result = array( 'success' => '0', 'content' => '' ); ob_start(); woocommerce_cross_sell_display(8, 4); $cross_sell = ob_get_clean(); /** * Empty Cross-sell */ if (trim($cross_sell) == '') { wp_send_json($result); wp_die(); } $cross_sell = str_replace( array( 'margin-top-50', 'margin-bottom-20', 'text-center' ), array( '', 'margin-bottom-10', '' ), $cross_sell ); $result['content'] = $cross_sell; $result['success'] = '1'; /** * Clear Old Notices */ wc_clear_notices(); wp_send_json($result); } /** * Get site map and located customer in menu map */ public static function nasa_get_site_map_and_located() { global $nasa_opt; $result = array( 'success' => '0', 'content' => '' ); $content_logo = elessi_logo(); $title = '' . esc_html__('The page location you are viewing is marked with', 'elessi-theme') . ''; $content = ''; if (isset($nasa_opt['where_you_are_menu']) && $nasa_opt['where_you_are_menu']) { $menu_map = nasa_get_menu_map(); $content .= '' . esc_html__('Estimate shipping rates', 'elessi-theme') . '
'; ob_start(); woocommerce_shipping_calculator(); $content .= ob_get_clean(); } /** * Coupon */ if ($_act == 'coupon') { ob_start(); $file = ELESSI_CHILD_PATH . '/includes/nasa-mini-cart-add-coupon.php'; include is_file($file) ? $file : ELESSI_THEME_PATH . '/includes/nasa-mini-cart-add-coupon.php'; $content .= ob_get_clean(); } $content .= '' . esc_html__('Estimate shipping rates', 'elessi-theme') . '
'; ob_start(); woocommerce_shipping_calculator(); $content .= ob_get_clean(); $content .= '