如何显示Woocommerce Cart Widget中的商品总价?

时间:2015-02-20 18:18:21

标签: wordpress widget woocommerce cart

目前我的Woocommerce购物车小部件看起来像这样(项目的总价格):

img1     Coffee
         2 x $5
-------------------
img2     Biscuit
         1 x $10
-------------------
img3     Cheese
         3 x $10
-------------------
Subtotal: $50

我想将其更改为(以数量项目的总价格):

img1     Coffee
         2 x $5        $10
---------------------------
img2     Biscuit
         1 x $10       $10
---------------------------
img3     Cheese
         3 x $10       $30
---------------------------
Subtotal:              $50

正如您所看到的,Cart Widget的第二个示例显示了项目的总价格。

有人可以帮帮我吗? 提前致谢! :!)

1 个答案:

答案 0 :(得分:1)

修改woocommerce插件,以下列方式实现此目的:

在主题文件夹中创建一个文件夹,并将其命名为 woocommerce ,然后在新创建的woocommerce文件夹中,使用购物车名称创建另一个文件夹。

所以现在它看起来像 wp-content>主题>你的主题> woocommerce>车

现在转到您的插件目录并按照以下路径:

wp-content > plugins > woocommerce > templates > cart

当你进入上面的路径时,你会发现一个名为mini-cart.php的文件。复制该文件并将其粘贴到我们在该答案顶部创建的目录。

wp-content > themes > your-theme > woocommerce > cart > mini-cart.php

现在是时候修改 wp-content>中的代码了主题>你的主题> woocommerce>购物车>迷你cart.php

只需使用以下代码替换所有代码:

    <?php
    /**
     * Mini-cart
     *
     * Contains the markup for the mini-cart, used by the cart widget
     *
     * @author      WooThemes
     * @package     WooCommerce/Templates
     * @version     2.1.0
     */

    if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
    ?>

    <?php do_action( 'woocommerce_before_mini_cart' ); ?>

    <ul class="cart_list product_list_widget <?php echo $args['list_class']; ?>">

        <?php if ( sizeof( WC()->cart->get_cart() ) > 0 ) : ?>

            <?php
                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 );
                    $product_id   = apply_filters( 'woocommerce_cart_item_product_id', $cart_item['product_id'], $cart_item, $cart_item_key );

                    if ( $_product && $_product->exists() && $cart_item['quantity'] > 0 && apply_filters( 'woocommerce_widget_cart_item_visible', true, $cart_item, $cart_item_key ) ) {

                        $product_name  = apply_filters( 'woocommerce_cart_item_name', $_product->get_title(), $cart_item, $cart_item_key );
                        $thumbnail     = apply_filters( 'woocommerce_cart_item_thumbnail', $_product->get_image(), $cart_item, $cart_item_key );
                        $product_price = apply_filters( 'woocommerce_cart_item_price', WC()->cart->get_product_price( $_product ), $cart_item, $cart_item_key );
                        echo "<p>".$product_price."</p>";
                        ?>
                        <li>
                        <?php if ( ! $_product->is_visible() ) { ?>
                            <?php echo str_replace( array( 'http:', 'https:' ), '', $thumbnail ) . $product_name; ?>
                        <?php } else { ?>
                            <a href="<?php echo get_permalink( $product_id ); ?>">
                                <?php echo str_replace( array( 'http:', 'https:' ), '', $thumbnail ) . $product_name; ?>
                            </a>
                        <?php } ?>
                            <?php echo WC()->cart->get_item_data( $cart_item ); ?>
                            <?php   $new_product_price_array = explode ( get_woocommerce_currency_symbol(), $product_price); 
                                    $new_product_price = number_format((float)$new_product_price_array[1] * $cart_item['quantity'], 2, '.', '');

                            ?>
                            <?php echo apply_filters( 'woocommerce_widget_cart_item_quantity', '<span class="quantity">' . sprintf( '%s &times; %s=%s%s', $cart_item['quantity'], $product_price,get_woocommerce_currency_symbol(), $new_product_price ) . '</span>', $cart_item, $cart_item_key ); ?>
                        </li>
                        <?php
                    }
                }
            ?>

        <?php else : ?>

            <li class="empty"><?php _e( 'No products in the cart.', 'woocommerce' ); ?></li>

        <?php endif; ?>

    </ul><!-- end product list -->

    <?php if ( sizeof( WC()->cart->get_cart() ) > 0 ) : ?>

        <p class="total"><strong><?php _e( 'Subtotal', 'woocommerce' ); ?>:</strong> <?php echo WC()->cart->get_cart_subtotal(); ?></p>

        <?php do_action( 'woocommerce_widget_shopping_cart_before_buttons' ); ?>

        <p class="buttons">
            <a href="<?php echo WC()->cart->get_cart_url(); ?>" class="button wc-forward"><?php _e( 'View Cart', 'woocommerce' ); ?></a>
            <a href="<?php echo WC()->cart->get_checkout_url(); ?>" class="button checkout wc-forward"><?php _e( 'Checkout', 'woocommerce' ); ?></a>
        </p>

    <?php endif; ?>

    <?php do_action( 'woocommerce_after_mini_cart' ); ?>

如果您有任何疑问,请告诉我。