本文整理汇总了PHP中wc_cart_totals_fee_html函数的典型用法代码示例。如果您正苦于以下问题:PHP wc_cart_totals_fee_html函数的具体用法?PHP wc_cart_totals_fee_html怎么用?PHP wc_cart_totals_fee_html使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了wc_cart_totals_fee_html函数的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。
示例1: foreach
?>
<?php
}
?>
<?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
}
?>
<?php
if (wc_tax_enabled() && 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) {
开发者ID:olechka1505,项目名称:hungrylemur,代码行数:31,代码来源:new-page.php
示例2: if
<?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 endif; ?>
<?php foreach ( WC()->cart->get_fees() as $fee ) : ?>
<tr class="fee fee-<?php echo $fee->id ?>">
<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 ); ?>">
<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>
开发者ID:simonsays88,项目名称:costa,代码行数:31,代码来源:cart-totals.php
示例3: if
</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 fee-<?php echo $fee->id ?>">
<th><?php echo esc_html( $fee->name ); ?></th>
<td colspan="2"><?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 ); ?>">
<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 colspan="2"><?php echo wc_price( WC()->cart->get_taxes_total() ); ?></td>
开发者ID:simonsays88,项目名称:costa,代码行数:31,代码来源:review-order.php
示例4: woocommerce_cart_totals_fee_html
/**
* @deprecated
*/
function woocommerce_cart_totals_fee_html($fee)
{
wc_cart_totals_fee_html($fee);
}
开发者ID:nayemDevs,项目名称:woocommerce,代码行数:7,代码来源:wc-deprecated-functions.php
示例5: klarna_checkout_get_fees_row_html
/**
* Gets shipping options as formatted HTML.
*
* @since 2.0
**/
function klarna_checkout_get_fees_row_html()
{
global $woocommerce;
ob_start();
if (!defined('WOOCOMMERCE_CART')) {
define('WOOCOMMERCE_CART', true);
}
$woocommerce->cart->calculate_shipping();
$woocommerce->cart->calculate_fees();
$woocommerce->cart->calculate_totals();
// Fees
foreach ($woocommerce->cart->get_fees() as $cart_fee) {
echo '<tr class="kco-fee">';
echo '<td class="kco-col-desc">';
echo strip_tags($cart_fee->name);
echo '</td>';
echo '<td class="kco-col-number kco-rightalign"><span class="amount">';
// echo wc_price( $cart_fee->amount + $cart_fee->tax );
echo wc_cart_totals_fee_html($cart_fee);
echo '</span></td>';
echo '</tr>';
}
return ob_get_clean();
}
开发者ID:NoviumDesign,项目名称:polefitness,代码行数:29,代码来源:class-klarna-shortcodes.php
注:本文中的wc_cart_totals_fee_html函数示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论