Woocommerce storefront_cart_link覆盖无效

时间:2019-03-16 13:31:37

标签: ajax wordpress woocommerce cart storefront

作为店面的孩子,我正在尝试为自定义WooCommerce主题整理一些内容。我首先替换了storefront_header_cart函数以删除完整的购物车列表,该列表按预期工作:

if ( ! function_exists( 'storefront_header_cart' ) ) {
    function storefront_header_cart() {
        if ( storefront_is_woocommerce_activated() ) {
            if ( is_cart() ) {
                $class = 'current-menu-item';
            } else {
                $class = '';
            }
            ?>
        <ul id="site-header-cart" class="site-header-cart menu">
            <li class="<?php echo esc_attr( $class ); ?>">
                <?php storefront_cart_link(); ?>
            </li>
        </ul>
            <?php
        }
    }
}

然后,我想更改内容链接本身中的文本。我做了完全相同的事情来覆盖默认店面行为...

if ( ! function_exists( 'storefront_cart_link' ) ) {
    function storefront_cart_link() {
        ?>
            <a class="cart-contents" href="<?php echo esc_url( wc_get_cart_url() ); ?>" title="<?php esc_attr_e( 'View your shopping cart', 'storefront' ); ?>">
                <?php /* translators: %d: number of items in cart */ ?>
                <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
    }
}

...但是它没有任何区别。显示完整的原始链接:

<a class="cart-contents" href="http://localhost/cart/" title="View your shopping cart">
    <span class="woocommerce-Price-amount amount"><span class="woocommerce-Price-currencySymbol">$</span>0.00</span> <span class="count">0 items</span>
</a>

为什么行为不一致?

  • WordPress:5.1.1
  • WooCommerce:3.5.6
  • 店面:2.4.5

1 个答案:

答案 0 :(得分:1)

这似乎与店面标头购物车数量上被拒的购物车片段有关。

  1. 首先完全清空购物车,并检查它是否与缓存无关。
  2. 涉及的购物车片段上的钩子是woocommerce_add_to_cart_fragments,因此您应该尝试在Storefront源代码中找到一些相关的钩子函数代码。

查看有关标题购物车计数的Ajax相关线程: