1

我想在店面主题的标题购物车中的定价之前添加文本“您的购物车:”,我尝试编辑并将其添加到 inc/woocommerce/storefront-woocommerce-template-functions.php 第 72 行

 <?php
function storefront_cart_link() {
<span class="amount">ADDED HERE<?php echo "AND HERE ALSO" . wp_kses_data( WC()->cart->get_cart_subtotal() ); ?></span> 
}?>

尽管它在站点加载之前出现在前端,但加载完成后,文本就消失了。请建议如何做。

运行 WP v4.6

4

1 回答 1

2

如果您将其添加到如下锚标记之外,它将显示您的购物车文本。

function storefront_cart_link() {
        ?>
            <span style="float:left;">Your Cart :</span> 
            <a class="cart-contents" href="<?php echo esc_url( WC()->cart->get_cart_url() ); ?>" title="<?php esc_attr_e( 'View your shopping cart', 'storefront' ); ?>">
                <span class="amount"><?php echo wp_kses_data( WC()->cart->get_cart_subtotal() ); ?></span> <span class="count"><?php echo wp_kses_data( sprintf( _n( '%d item', '%d items', WC()->cart->get_cart_contents_count(), 'storefront' ), WC()->cart->get_cart_contents_count() ) );?></span>
            </a>
        <?php
    }
于 2016-08-20T09:30:39.013 回答