X7ROOT File Manager
Current Path:
/home/notabjze/starbudzca.com/wp-content/themes/elessi-theme/includes
home
/
notabjze
/
starbudzca.com
/
wp-content
/
themes
/
elessi-theme
/
includes
/
ðŸ“
..
📄
nasa-after-add-to-cart.php
(9.57 KB)
📄
nasa-blog-grid.php
(5.1 KB)
📄
nasa-blog-list.php
(5.34 KB)
📄
nasa-blog-masonry-isotope.php
(5.6 KB)
📄
nasa-blog-promotion.php
(2.35 KB)
📄
nasa-blog-standard.php
(4.38 KB)
📄
nasa-change-view.php
(4.71 KB)
📄
nasa-checkout-coupon-modern.php
(979 B)
📄
nasa-checkout-default.php
(2.94 KB)
📄
nasa-checkout-modern-billing-detail.php
(1.62 KB)
📄
nasa-checkout-modern.php
(7.3 KB)
📄
nasa-combo-products-in-detail.php
(1.11 KB)
📄
nasa-combo-products-quickview.php
(2.08 KB)
📄
nasa-combo-products.php
(2.26 KB)
📄
nasa-content-product-gift.php
(3.15 KB)
📄
nasa-gdpr-notice.php
(1.11 KB)
📄
nasa-get-content-products.php
(822 B)
📄
nasa-global-wishlist.php
(3.89 KB)
📄
nasa-login-register-form.php
(8.88 KB)
📄
nasa-loop-product-thumbnail.php
(3.28 KB)
📄
nasa-mini-cart-add-coupon.php
(3.65 KB)
📄
nasa-mini-cart-coupons.php
(604 B)
📄
nasa-mini-cart-fees.php
(505 B)
📄
nasa-mini-cart-note.php
(884 B)
📄
nasa-mini-cart-shipping.php
(1.86 KB)
📄
nasa-mini-cart-taxs.php
(1.56 KB)
📄
nasa-mini-cart-total.php
(311 B)
📄
nasa-mini-compare.php
(5.23 KB)
📄
nasa-mobile-account.php
(169 B)
📄
nasa-mobile-bottom-bar.php
(4.25 KB)
📄
nasa-product-buttons.php
(441 B)
📄
nasa-promo-popup.php
(1.65 KB)
📄
nasa-review-images.php
(992 B)
📄
nasa-sidebar-shop-side.php
(1.76 KB)
📄
nasa-sidebar-shop-top.php
(2.02 KB)
📄
nasa-sidebar-wishlist.php
(672 B)
📄
nasa-sidebar-wishlist_content.php
(14.14 KB)
📄
nasa-sidebar-wishlist_html.php
(5.62 KB)
📄
nasa-single-product-classic.php
(2.66 KB)
📄
nasa-single-product-full.php
(3.05 KB)
📄
nasa-single-product-lightbox-gallery.php
(801 B)
📄
nasa-single-product-lightbox.php
(2.63 KB)
📄
nasa-single-product-modern-1.php
(2.2 KB)
📄
nasa-single-product-modern-2.php
(2.64 KB)
📄
nasa-single-product-modern-3.php
(2.63 KB)
📄
nasa-single-product-new-2.php
(2.1 KB)
📄
nasa-single-product-new.php
(2.88 KB)
📄
nasa-single-product-tabs_accordion_layout.php
(1.26 KB)
📄
nasa-single-product-tabs_accordion_small_layout.php
(1.22 KB)
📄
nasa-single-product-tabs_scroll_layout.php
(2.29 KB)
📄
nasa-single-product-tabs_tab_layout.php
(2.5 KB)
📄
nasa-single-product-tabs_ver-1_layout.php
(1.99 KB)
📄
nasa-single-product-tabs_ver-2_layout.php
(888 B)
📄
nasa-tmpl-captcha-field-register.php
(805 B)
📄
nasa-variation-main-images.php
(2.53 KB)
📄
nasa-variation-thumb-images.php
(1.91 KB)
📄
nasa-view-compare.php
(5.8 KB)
Editing: nasa-after-add-to-cart.php
<?php /** * Popup after add to cart * Your Order Popup */ if (!defined('ABSPATH')) : exit; // Exit if accessed directly endif; global $nasa_opt; do_action('popup_woocommerce_before_cart'); ?> <h3 class="nasa-title-after-add-to-cart text-center"> <?php echo esc_html__('Your Order', 'elessi-theme'); ?> </h3> <form class="after-add-to-cart-form<?php echo isset($nasa_opt['auto_update_cart']) && $nasa_opt['auto_update_cart'] ? ' qty-auto-update': ''; ?>" action="<?php echo esc_url(wc_get_cart_url()); ?>" method="post"> <?php do_action('popup_woocommerce_before_cart_table'); ?> <div class="nasa-table-wrap"> <table class="after-add-to-cart-shop_table responsive woocommerce-cart-form__contents"> <thead> <tr> <th class="product-name" colspan="3"><?php esc_html_e('Product', 'elessi-theme'); ?></th> <th class="product-price hide-for-small"><?php esc_html_e('Price', 'elessi-theme'); ?></th> <th class="product-quantity"><?php esc_html_e('Quantity', 'elessi-theme'); ?></th> <th class="product-subtotal hide-for-small"><?php esc_html_e('Total', 'elessi-theme'); ?></th> </tr> </thead> <tbody> <?php do_action('popup_woocommerce_before_cart_contents'); ?> <?php foreach ($cart_items as $cart_item_key => $cart_item) : $_product = apply_filters('woocommerce_cart_item_product', $cart_item['data'], $cart_item, $cart_item_key); $product_id = apply_filters('woocommerce_cart_item_product_id', $cart_item['product_id'], $cart_item, $cart_item_key); if ($_product && $_product->exists() && $cart_item['quantity'] > 0 && apply_filters('woocommerce_cart_item_visible', true, $cart_item, $cart_item_key)) : $product_permalink = apply_filters('woocommerce_cart_item_permalink', $_product->is_visible() ? $_product->get_permalink($cart_item) : '', $cart_item, $cart_item_key); $priceProduct = apply_filters( 'woocommerce_cart_item_price', $nasa_cart->get_product_price($_product), $cart_item, $cart_item_key ); ?> <tr class="woocommerce-cart-form__cart-item <?php echo esc_attr(apply_filters('woocommerce_cart_item_class', 'cart_item', $cart_item, $cart_item_key)); ?>"> <td class="product-remove remove-product"> <?php echo apply_filters( 'woocommerce_cart_item_remove_link', sprintf('<a href="%s" class="remove_from_cart_popup nasa-stclose" title="%s" data-product_id="%s" data-product_sku="%s">%s</a>', esc_url(function_exists('wc_get_cart_remove_url') ? wc_get_cart_remove_url($cart_item_key) : $nasa_cart->get_remove_url($cart_item_key)), esc_attr__('Remove', 'elessi-theme'), esc_attr($product_id), esc_attr($_product->get_sku()), esc_html__('Remove', 'elessi-theme') ), $cart_item_key ); ?> </td> <td class="product-thumbnail"> <?php $thumbnail = apply_filters('woocommerce_cart_item_thumbnail', str_replace(array('http:', 'https:'), '', $_product->get_image()), $cart_item, $cart_item_key); if (!$product_permalink) : echo $thumbnail; else : printf('<a href="%s">%s</a>', esc_url($product_permalink), $thumbnail); endif; ?> </td> <td class="product-name" data-title="<?php esc_attr_e('Product', 'elessi-theme'); ?>"> <?php if (!$product_permalink): echo wp_kses_post(apply_filters('woocommerce_cart_item_name', $_product->get_name(), $cart_item, $cart_item_key ) . ' '); else: echo wp_kses_post(apply_filters('woocommerce_cart_item_name', sprintf( '<a href="%s">%s</a>', esc_url($product_permalink), $_product->get_name()), $cart_item, $cart_item_key)); endif; do_action('woocommerce_after_cart_item_name', $cart_item, $cart_item_key); // Meta data echo function_exists('wc_get_formatted_cart_item_data') ? wc_get_formatted_cart_item_data($cart_item) : $nasa_cart->get_item_data($cart_item); // Backorder notification if ($_product->backorders_require_notification() && $_product->is_on_backorder($cart_item['quantity'])) : echo wp_kses_post(apply_filters('woocommerce_cart_item_backorder_notification', '<p class="backorder_notification">' . esc_html__('Available on backorder', 'elessi-theme') . '</p>', $product_id)); endif; ?> <div class="mobile-price show-for-small" data-title="<?php esc_attr_e('Price', 'elessi-theme'); ?>"> <?php echo $priceProduct; ?> </div> </td> <td class="product-price hide-for-small" data-title="<?php esc_attr_e('Price', 'elessi-theme'); ?>"> <?php echo $priceProduct; ?> </td> <td class="product-quantity" data-title="<?php esc_attr_e('Quantity', 'elessi-theme'); ?>"> <?php if ($_product->is_sold_individually()) : $product_quantity = sprintf('1 <input type="hidden" name="cart[%s][qty]" value="1" />', $cart_item_key); else : $product_quantity = woocommerce_quantity_input( array( 'input_name' => 'cart[' . $cart_item_key . '][qty]', 'input_value' => $cart_item['quantity'], 'max_value' => $_product->get_max_purchase_quantity(), 'min_value' => '0', 'product_name' => $_product->get_name(), ), $_product, false ); endif; echo apply_filters('woocommerce_cart_item_quantity', $product_quantity, $cart_item_key, $cart_item); // PHPCS: XSS ok. ?> </td> <td class="product-subtotal hide-for-small" data-title="<?php esc_attr_e('Total', 'elessi-theme'); ?>"> <?php echo apply_filters('woocommerce_cart_item_subtotal', $nasa_cart->get_product_subtotal($_product, $cart_item['quantity']), $cart_item, $cart_item_key); // PHPCS: XSS ok. ?> </td> </tr> <?php endif; endforeach; do_action('popup_woocommerce_cart_contents'); do_action('popup_woocommerce_after_cart_contents'); ?> </tbody> </table> </div> <?php do_action('popup_woocommerce_after_cart_table'); ?> <div class="nasa-after-add-to-cart-subtotal text-center"> <span class="nasa-after-add-to-cart-subtotal-title"> <?php esc_html_e('Subtotal ', 'elessi-theme'); ?> </span> <span class="nasa-after-add-to-cart-subtotal-price"> <?php wc_cart_totals_subtotal_html(); ?> </span> </div> <?php do_action('nasa_subtotal_free_shipping'); ?> <div class="nasa-after-add-to-cart-buttons margin-top-20"> <a class="button nasa-disable nasa-update-cart-popup left rtl-right" href="javascript:void(0);" title="<?php esc_attr_e('Update Cart', 'elessi-theme'); ?>" rel="nofollow"> <?php esc_html_e('Update Cart', 'elessi-theme'); ?> </a> <a href="<?php echo esc_url(wc_get_checkout_url()); ?>" class="checkout-button button alt wc-forward right rtl-left" title="<?php esc_attr_e('Proceed to checkout', 'elessi-theme'); ?>"> <?php esc_html_e('Proceed to checkout', 'elessi-theme'); ?> </a> </div> <div class="clearfix"></div> <?php wp_nonce_field('woocommerce-cart', 'woocommerce-cart-nonce'); ?> </form> <?php do_action('popup_woocommerce_after_cart');
Upload File
Create Folder