當前位置: 首頁>>代碼示例>>PHP>>正文


PHP wc_cart_totals_fee_html函數代碼示例

本文整理匯總了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;未經允許,請勿轉載。