本文整理汇总了PHP中woocommerce_shipping_calculator函数的典型用法代码示例。如果您正苦于以下问题:PHP woocommerce_shipping_calculator函数的具体用法?PHP woocommerce_shipping_calculator怎么用?PHP woocommerce_shipping_calculator使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了woocommerce_shipping_calculator函数的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: if
</tr>
<?php endforeach; ?>
<?php if ( WC()->cart->needs_shipping() && WC()->cart->show_shipping() ) : ?>
<?php do_action( 'woocommerce_cart_totals_before_shipping' ); ?>
<?php wc_cart_totals_shipping_html(); ?>
<?php do_action( 'woocommerce_cart_totals_after_shipping' ); ?>
<?php elseif ( WC()->cart->needs_shipping() ) : ?>
<tr class="shipping">
<th><?php _e( 'Shipping', 'woocommerce' ); ?></th>
<td><?php woocommerce_shipping_calculator(); ?></td>
</tr>
<?php endif; ?>
<?php foreach ( WC()->cart->get_fees() as $fee ) : ?>
<tr class="fee">
<th><?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 ); ?>">
示例2: do_action
<?php
do_action('woocommerce_after_cart_contents');
?>
</tbody>
</table>
<?php
do_action('woocommerce_after_cart_table');
?>
</form>
<div class="cart-collaterals">
<?php
do_action('woocommerce_cart_collaterals');
?>
<?php
woocommerce_cart_totals();
?>
<?php
woocommerce_shipping_calculator();
?>
</div>
<?php
do_action('woocommerce_after_cart');
示例3: mango_shipping_calculator
function mango_shipping_calculator()
{
$cart_ver = mango_cart_version();
if (WC()->cart->needs_shipping()) {
if ($cart_ver == "v_1") {
?>
<div class="col-md-6">
<?php
}
?>
<h4 class="title-border-tb"><?php
_e("Get shipping Estimates", 'mango');
?>
</h4>
<?php
if (WC()->cart->needs_shipping() && WC()->cart->show_shipping()) {
?>
<?php
do_action('woocommerce_cart_totals_before_shipping');
?>
<?php
wc_cart_totals_shipping_html();
?>
<?php
do_action('woocommerce_cart_totals_after_shipping');
?>
<?php
} elseif (WC()->cart->needs_shipping()) {
?>
<?php
woocommerce_shipping_calculator();
?>
<?php
}
if ($cart_ver == "v_1") {
?>
</div>
<?php
}
}
}