File: //var/www/shoetique/wp-content/themes/north-wp/woocommerce/checkout/review-order.php
<?php
/**
* Review order form
*
* @author WooThemes
* @package WooCommerce/Templates
* @version 2.3.0
*/
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
?>
<?php if ( ! is_ajax() ) : ?>
<div class="small-12 medium-6 columns">
<div class="login-section">
<div class="smalltitle"><?php _e( 'Your Order','north' ); ?></div>
<?php endif; ?>
<table class="shop_table woocommerce-checkout-review-order-table shopping_bag order_table">
<thead>
<tr>
<th class="product-name" colspan="3"><?php _e( 'Product', 'woocommerce' ); ?></th>
<th class="product-subtotal"><?php _e( 'Total', 'woocommerce' ); ?></th>
</tr>
</thead>
<tbody>
<?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 ) ) {
?>
<?php
$on_sale = $_product->is_on_sale();
$current_price = $_product->get_price();
if ($_product->get_type() == 'variable'){
$old_price = $_product->get_variation_regular_price('min');
}
else{
$old_price = $_product->get_regular_price();
}
$lowest_price = wc_get_price_to_display( $_product, array( 'price' => get_lowest_price( $_product->get_id(), $old_price ) ) );
?>
<tr class="<?php echo esc_attr( apply_filters( 'woocommerce_cart_item_class', 'cart_item', $cart_item, $cart_item_key ) ); ?>">
<td class="product-name" colspan="3">
<h6>
<?php echo apply_filters( 'woocommerce_cart_item_name', $_product->get_title(), $cart_item, $cart_item_key ); ?>
</h6>
<?php echo wc_get_formatted_cart_item_data_borealis( $cart_item ); ?>
</td>
<td class="product-total">
<?php if ( $price_html = $_product->get_price_html() ) : ?>
<div class="price-outter">
<?php if ($on_sale) : ?>
<span class="price old"><?php echo price_with_secondary($old_price * $cart_item['quantity']); ?></span>
<?php endif; ?>
<span class="price current"><?php echo price_with_secondary($current_price * $cart_item['quantity']); ?></span>
<?php if ($on_sale) : ?>
<span class="lowest_price hide-small"><?= __( 'NC u zadnjih 30 dana:', 'lowest-price' ) ?> <span class="lowest_amount"><?= price_with_secondary( $lowest_price ) . $_product->get_price_suffix() ?> </span></span>
<span class="lowest_price hide-large"><?= __( 'Najniža cijena u zadnjih 30 dana:', 'lowest-price' ) ?> <span class="lowest_amount"><?= price_with_secondary( $lowest_price ) . $_product->get_price_suffix() ?> </span></span>
<?php endif; ?>
</div>
<?php endif; ?>
</td>
</tr>
<?php
}
}
do_action( 'woocommerce_review_order_after_cart_contents' );
?>
</tbody>
<tfoot>
<tr class="cart-subtotal">
<th colspan="3"><?php _e( 'Subtotal', 'woocommerce' ); ?></th>
<td><?php echo price_with_secondary(WC()->cart->get_subtotal()); ?></td>
</tr>
<?php foreach ( WC()->cart->get_coupons() as $code => $coupon ) : ?>
<tr class="cart-discount coupon-<?php echo esc_attr( $code ); ?>">
<th colspan="3"><?php wc_cart_totals_coupon_label( $coupon ); ?></th>
<td><?php wc_cart_totals_coupon_html( $coupon ); ?></td>
</tr>
<?php endforeach; ?>
<?php if ( WC()->cart->needs_shipping() && WC()->cart->show_shipping() ) : ?>
<?php do_action( 'woocommerce_review_order_before_shipping' ); ?>
<?php wc_cart_totals_shipping_html(); ?>
<?php do_action( 'woocommerce_review_order_after_shipping' ); ?>
<?php endif; ?>
<?php foreach ( WC()->cart->get_fees() as $fee ) : ?>
<tr class="fee">
<th colspan="3"><?php echo esc_html( $fee->name ); ?></th>
<td><?php wc_cart_totals_fee_html( $fee ); ?></td>
</tr>
<?php endforeach; ?>
<?php if ( WC()->cart->tax_display_cart === 'excl' ) : ?>
<?php if ( get_option( 'woocommerce_tax_total_display' ) === 'itemized' ) : ?>
<?php foreach ( WC()->cart->get_tax_totals() as $code => $tax ) : ?>
<tr class="tax-rate tax-rate-<?php echo sanitize_title( $code ); ?>" colspan="3">
<th colspan="3"><?php echo esc_html( $tax->label ); ?></th>
<td><?php echo price_with_secondary( $tax->amount ); ?></td>
</tr>
<?php endforeach; ?>
<?php else : ?>
<tr class="tax-total">
<th colspan="3"><?php echo esc_html( WC()->countries->tax_or_vat() ); ?></th>
<td><?php echo price_with_secondary( WC()->cart->get_taxes_total() ); ?></td>
</tr>
<?php endif; ?>
<?php endif; ?>
<?php do_action( 'woocommerce_review_order_before_order_total' ); ?>
<tr class="order-total">
<th colspan="3"><?php _e( 'Order Total', 'woocommerce' ); ?></th>
<td><?php echo price_with_secondary( WC()->cart->total ); ?></td>
</tr>
<?php do_action( 'woocommerce_review_order_after_order_total' ); ?>
</tfoot>
</table>
<?php if ( ! is_ajax() ) : ?>
</div>
</div>
<?php endif; ?>