Server : Apache System : Linux ls31.server.ly 3.10.0-962.3.2.lve1.5.68.el7.x86_64 #1 SMP Wed Apr 6 11:12:23 UTC 2022 x86_64 User : medchoco ( 2906) PHP Version : 8.3.16 Disable Function : mail Directory : /home/medchoco/www/wp-content/themes/puca/woocommerce/checkout/ |
Upload File : |
<?php /** * Review order table * * This template can be overridden by copying it to yourtheme/woocommerce/checkout/review-order.php. * * HOWEVER, on occasion WooCommerce will need to update template files and you * (the theme developer) will need to copy the new files to your theme to * maintain compatibility. We try to do this as little as possible, but it does * happen. When this occurs the version of the template file will be bumped and * the readme will list any important changes. * * @see https://docs.woocommerce.com/document/template-structure/ * @package WooCommerce/Templates * @version 5.2.0 */ defined( 'ABSPATH' ) || exit; $class_order = ( count(WC()->cart->get_cart()) === 1 ) ? 'order-one' : ''; ?> <div class="shop_table woocommerce-checkout-review-order-table <?php echo esc_attr($class_order); ?>"> <?php do_action( 'woocommerce_review_order_before_cart_contents' ); foreach ( WC()->cart->get_cart() as $cart_item_key => $cart_item ) { $_product = apply_filters( 'woocommerce_cart_item_product', $cart_item['data'], $cart_item, $cart_item_key ); if ( $_product && $_product->exists() && $cart_item['quantity'] > 0 && apply_filters( 'woocommerce_checkout_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 ); ?> <div class="<?php echo esc_attr( apply_filters( 'woocommerce_cart_item_class', 'cart_item', $cart_item, $cart_item_key ) ); ?>"> <?php if( puca_tbay_get_config('show_checkout_image', false) ) : ?> <span class="product-thumbnail"> <?php $thumbnail = apply_filters( 'woocommerce_cart_item_thumbnail', $_product->get_image(), $cart_item, $cart_item_key ); if ( ! $product_permalink ) { echo trim($thumbnail); } else { printf( '<a href="%s">%s</a>', esc_url( $product_permalink ), $thumbnail ); } ?> </span> <?php endif; ?> <span class="product-name"> <?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 ) ); } // Meta data echo wc_get_formatted_cart_item_data( $cart_item ); // Backorder notification if ( $_product->backorders_require_notification() && $_product->is_on_backorder( $cart_item['quantity'] ) ) { echo '<p class="backorder_notification">' . esc_html__( 'Available on backorder', 'puca' ) . '</p>'; } ?> </span> <span class="product-price"><?php echo apply_filters( 'woocommerce_cart_item_price', WC()->cart->get_product_price( $_product ), $cart_item, $cart_item_key ); ?></span> <span class="product-quantity"><p><?php echo esc_html__('Qty:', 'puca');?></p><b><?php echo apply_filters( 'woocommerce_checkout_cart_item_quantity', sprintf('%s', $cart_item['quantity'] ), $cart_item, $cart_item_key ); ?></b></span> <span class="product-total"><p><?php echo esc_html__('stb:', 'puca');?></p><b><?php echo apply_filters( 'woocommerce_cart_item_subtotal', WC()->cart->get_product_subtotal( $_product, $cart_item['quantity'] ), $cart_item, $cart_item_key ); ?></b></span> </div> <?php } } do_action( 'woocommerce_review_order_after_cart_contents' ); ?> <div class="cart_totals"> <h2><?php esc_html_e('Cart totals', 'puca'); ?></h2> <div class="cart-subtotal"> <p><?php esc_html_e( 'Subtotal', 'puca' ); ?></p> <span><?php wc_cart_totals_subtotal_html(); ?></span> </div> <?php foreach ( WC()->cart->get_coupons() as $code => $coupon ) : ?> <div class="cart-discount coupon-<?php echo esc_attr( sanitize_title( $code ) ); ?>"> <p><?php wc_cart_totals_coupon_label( $coupon ); ?></p> <span><?php wc_cart_totals_coupon_html( $coupon ); ?></span> </div> <?php endforeach; ?> <?php if ( WC()->cart->needs_shipping() && WC()->cart->show_shipping() ) : ?> <div class="cart-shipping"> <?php do_action( 'woocommerce_review_order_before_shipping' ); ?> <?php wc_cart_totals_shipping_html(); ?> <?php do_action( 'woocommerce_review_order_after_shipping' ); ?> </div> <?php endif; ?> <?php foreach ( WC()->cart->get_fees() as $fee ) : ?> <div class="fee"> <p><?php echo esc_html( $fee->name ); ?></p> <span><?php wc_cart_totals_fee_html( $fee ); ?></span> </div> <?php endforeach; ?> <?php if ( wc_tax_enabled() && ! WC()->cart->display_prices_including_tax() ) : ?> <?php if ( 'itemized' === get_option( 'woocommerce_tax_total_display' ) ) : ?> <?php foreach ( WC()->cart->get_tax_totals() as $code => $tax ) : ?> <div class="tax-rate tax-rate-<?php echo esc_attr( sanitize_title( $code ) ); ?>"> <p><?php echo esc_html( $tax->label ); ?></p> <span><?php echo wp_kses_post( $tax->formatted_amount ); ?></span> </div> <?php endforeach; ?> <?php else : ?> <div class="tax-total"> <p><?php echo esc_html( WC()->countries->tax_or_vat() ); ?></p> <span><?php wc_cart_totals_taxes_total_html(); ?></span> </div> <?php endif; ?> <?php endif; ?> <?php do_action( 'woocommerce_review_order_before_order_total' ); ?> <div class="order-total"> <p><?php esc_html_e( 'Total', 'puca' ); ?></p> <span><?php wc_cart_totals_order_total_html(); ?></span> </div> <?php do_action( 'woocommerce_review_order_after_order_total' ); ?> </div> </div>