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


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怎麽用?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; ?>
開發者ID:simonsays88,項目名稱:costa,代碼行數:31,代碼來源:cart-totals.php

示例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">
開發者ID:simonsays88,項目名稱:costa,代碼行數:31,代碼來源:review-order.php

示例3: woocommerce_cart_totals_order_total_html

/**
 * @deprecated
 */
function woocommerce_cart_totals_order_total_html()
{
    wc_cart_totals_order_total_html();
}
開發者ID:nayemDevs,項目名稱:woocommerce,代碼行數:7,代碼來源:wc-deprecated-functions.php

示例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>
開發者ID:simonsays88,項目名稱:costa,代碼行數:30,代碼來源:review-order.php

示例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>
開發者ID:olechka1505,項目名稱:hungrylemur,代碼行數:31,代碼來源:new-page.php


注:本文中的wc_cart_totals_order_total_html函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。