如何在 Woocommerce 购物车小部件中显示商品的总价?

Posted

技术标签:

【中文标题】如何在 Woocommerce 购物车小部件中显示商品的总价?【英文标题】:How to show total price of items in Woocommerce Cart Widget? 【发布时间】:2015-02-20 18:18:20 【问题描述】:

目前我的 Woocommerce 购物车小部件如下所示(不包括商品总价):

img1 咖啡 2 x 5 美元 ------------------ img2 饼干 1 x 10 美元 ------------------ img3 奶酪 3 x 10 美元 ------------------ 小计:50 美元

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

img1 咖啡 2 x 5 美元 10 美元 -------------------------- img2 饼干 1 x 10 美元 10 美元 -------------------------- img3 奶酪 3 x 10 美元 30 美元 -------------------------- 小计:50 美元

如您所见,Cart Widget 的第二个示例显示了商品的总价。

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

【问题讨论】:

【参考方案1】:

修改 woocommerce 插件以通过以下方式实现此目的:

在您的主题文件夹中创建一个文件夹并将其命名为 woocommerce 并在新创建的 woocommerce 文件夹中创建另一个具有 cart 名称的文件夹。

所以现在它看起来像 wp-content > Themes > your-theme > woocommerce > cart

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

wp-content > plugins > woocommerce > templates > cart

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

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

现在是时候修改 wp-content > Themes > your-theme > woocommerce > cart > mini-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' ); ?>

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

【讨论】:

您可以接受该答案,以便将来它也可以帮助其他人。快乐编码! 嗨 @Rohil_PHPBeginner - 欣赏这是 3 年前的事了,但我正在尝试实现类似的目标,并在底部/顶部显示 购物车中的商品总数购物车小部件...这可能吗?

以上是关于如何在 Woocommerce 购物车小部件中显示商品的总价?的主要内容,如果未能解决你的问题,请参考以下文章

在Woocommerce中Ajax化自定义迷你购物车小部件

在WooCommerce产品类别窗口小部件侧边栏中显示产品数量

woocommerce产品小部件显示了我无法设置样式的神秘类

woocommerce 小部件“按属性过滤产品”显示不可用的产品

如何从另一个小部件状态处理一个小部件状态?

WooCommerce 小部件 - 迄今为止的订单列表