More Formatting
Make formatting identical with Woo files, for easier syncing later; More capitalization fixes on text, making identical to Woo files;
This commit is contained in:
parent
1eed4183b2
commit
14676bb3f3
|
@ -100,8 +100,7 @@ do_action( 'woocommerce_before_cart' ); ?>
|
||||||
?>
|
?>
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
<td class="product-quantity" data-title="<?php esc_attr_e( 'Quantity', 'understrap' ); ?>">
|
<td class="product-quantity" data-title="<?php esc_attr_e( 'Quantity', 'understrap' ); ?>"><?php
|
||||||
<?php
|
|
||||||
if ( $_product->is_sold_individually() ) {
|
if ( $_product->is_sold_individually() ) {
|
||||||
$product_quantity = sprintf( '1 <input type="hidden" name="cart[%s][qty]" value="1" />', $cart_item_key );
|
$product_quantity = sprintf( '1 <input type="hidden" name="cart[%s][qty]" value="1" />', $cart_item_key );
|
||||||
} else {
|
} else {
|
||||||
|
@ -114,8 +113,7 @@ do_action( 'woocommerce_before_cart' ); ?>
|
||||||
}
|
}
|
||||||
|
|
||||||
echo apply_filters( 'woocommerce_cart_item_quantity', $product_quantity, $cart_item_key, $cart_item );
|
echo apply_filters( 'woocommerce_cart_item_quantity', $product_quantity, $cart_item_key, $cart_item );
|
||||||
?>
|
?></td>
|
||||||
</td>
|
|
||||||
|
|
||||||
<td class="product-subtotal" data-title="<?php esc_attr_e( 'Total', 'understrap' ); ?>">
|
<td class="product-subtotal" data-title="<?php esc_attr_e( 'Total', 'understrap' ); ?>">
|
||||||
<?php
|
<?php
|
||||||
|
|
|
@ -24,8 +24,8 @@ wc_print_notices();
|
||||||
|
|
||||||
do_action( 'woocommerce_before_checkout_form', $checkout );
|
do_action( 'woocommerce_before_checkout_form', $checkout );
|
||||||
|
|
||||||
// If checkout registration is disabled and not logged in, the user cannot checkout.
|
|
||||||
if ( ! $checkout->enable_signup && ! $checkout->enable_guest_checkout && ! is_user_logged_in() ) {
|
if ( ! $checkout->enable_signup && ! $checkout->enable_guest_checkout && ! is_user_logged_in() ) {
|
||||||
|
// If checkout registration is disabled and not logged in, the user cannot checkout
|
||||||
echo apply_filters( 'woocommerce_checkout_must_be_logged_in_message', __( 'You must be logged in to checkout.', 'understrap' ) );
|
echo apply_filters( 'woocommerce_checkout_must_be_logged_in_message', __( 'You must be logged in to checkout.', 'understrap' ) );
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
|
@ -27,7 +27,7 @@ $customer_orders = get_posts( apply_filters( 'woocommerce_my_account_my_orders_q
|
||||||
|
|
||||||
if ( $customer_orders ) : ?>
|
if ( $customer_orders ) : ?>
|
||||||
|
|
||||||
<h2><?php echo apply_filters( 'woocommerce_my_account_my_orders_title', __( 'Recent Orders', 'understrap' ) ); ?></h2>
|
<h2><?php echo apply_filters( 'woocommerce_my_account_my_orders_title', __( 'Recent orders', 'understrap' ) ); ?></h2>
|
||||||
|
|
||||||
<table class="shop_table shop_table_responsive my_account_orders table-hover table-striped">
|
<table class="shop_table shop_table_responsive my_account_orders table-hover table-striped">
|
||||||
|
|
||||||
|
|
Reference in New Issue