本文整理汇总了PHP中wc_cart_totals_order_total_html函数的典型用法代码示例。如果您正苦于以下问题:PHP wc_cart_totals_order_total_html函数的具体用法?PHP wc_cart_totals_order_total_html怎么用?PHP wc_cart_totals_order_total_html使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了wc_cart_totals_order_total_html函数的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: foreach
</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: foreach
</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">
示例3: woocommerce_cart_totals_order_total_html
/**
* @deprecated
*/
function woocommerce_cart_totals_order_total_html()
{
wc_cart_totals_order_total_html();
}
示例4: if
</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: do_action
?>
</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>