示例#1
1
                        </tr>
                    <?php endif; ?>
                <?php endif; ?>

                <?php foreach ( WC()->cart->get_coupons( 'order' ) as $code => $coupon ) : ?>
                    <tr class="order-discount coupon-<?php echo esc_attr( $code ); ?>">
                        <th><?php echo $fix_coupon; ?> <?php echo esc_html( $code ); ?></th>
                        <td><?php wc_cart_totals_coupon_html( $coupon ); ?></td>
                    </tr>
                <?php endforeach; ?>

                <?php do_action( 'woocommerce_cart_totals_before_order_total' ); ?>

                <tr class="total">
                    <th><strong><?php echo $order_total_fix; ?></strong></th>
                    <td><strong><?php  wc_cart_totals_order_total_html() ?></strong></td>
                </tr>

                <?php do_action( 'woocommerce_cart_totals_after_order_total' ); ?>
                </tbody>
            </table>

            <?php if ( WC()->cart->get_cart_tax() ) : ?>
                <p>
                    <small><?php
                        $estimated_text = ( WC()->customer->is_customer_outside_base() && ! WC()->customer->has_calculated_shipping() ) ? sprintf( ' ' . __( ' (taxes estimated for %s)', 'yit' ), WC()->countries->estimated_for_prefix() . __( WC()->countries->countries[WC()->countries->get_base_country()], 'yit' ) ) : '';
                        printf( __( 'Note: Shipping and taxes are estimated%s and will be updated during checkout based on your billing and shipping information.', 'yit' ), $estimated_text );
                        ?>
                    </small>
                </p>
            <?php endif; ?>
示例#2
0
                </tr>
            <?php endif; ?>
        <?php endif; ?>

        <?php foreach ( WC()->cart->get_coupons( 'order' ) as $code => $coupon ) : ?>
            <tr class="order-discount coupon-<?php echo esc_attr( $code ); ?>">
                <th><?php $fix_coupon; ?> <?php echo esc_html( $code ); ?></th>
                <td colspan="2"><?php wc_cart_totals_coupon_html( $coupon ); ?></td>
            </tr>
        <?php endforeach; ?>

        <?php do_action( 'woocommerce_review_order_before_order_total' ); ?>

        <tr class="total">
            <th><?php echo $order_total_fix; ?></th>
            <td colspan="2"><strong><?php wc_cart_totals_order_total_html(); ?></strong></td>
        </tr>

        <?php do_action( 'woocommerce_review_order_after_order_total' ); ?>

        </tfoot>
        <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 ) ) {
                ?>
                <tr class="<?php echo esc_attr( apply_filters( 'woocommerce_cart_item_class', 'cart_item', $cart_item, $cart_item_key ) ); ?>">
                    <td class="product-name">
/**
 * @deprecated
 */
function woocommerce_cart_totals_order_total_html()
{
    wc_cart_totals_order_total_html();
}
示例#4
0
            </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 ); ?>">
                        <th><?php echo esc_html( $tax->label ); ?></th>
                        <td><?php echo wp_kses_post( $tax->formatted_amount ); ?></td>
                    </tr>
                <?php endforeach; ?>
            <?php else : ?>
                <tr class="tax-total">
                    <th><?php echo esc_html( WC()->countries->tax_or_vat() ); ?></th>
                    <td ><?php echo wc_price( 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><?php _e( 'Order Total', 'yit' ); ?></th>
            <td><?php wc_cart_totals_order_total_html(); ?></td>
        </tr>

        <?php do_action( 'woocommerce_review_order_after_order_total' ); ?>

        </tfoot>
    </table>
示例#5
-1
        ?>
</td>
				</tr>
			<?php 
    }
    ?>
		<?php 
}
?>

		<?php 
do_action('woocommerce_review_order_before_order_total');
?>

		<tr class="order-total">
			<th><?php 
_e('Total', 'woocommerce');
?>
</th>
			<td><?php 
wc_cart_totals_order_total_html();
?>
</td>
		</tr>

		<?php 
do_action('woocommerce_review_order_after_order_total');
?>

	</tfoot>
</table>