作为店面的孩子,我正在尝试为自定义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>
为什么行为不一致?
答案 0 :(得分:1)
这似乎与店面标头购物车数量上被拒的购物车片段有关。
woocommerce_add_to_cart_fragments
,因此您应该尝试在Storefront源代码中找到一些相关的钩子函数代码。查看有关标题购物车计数的Ajax相关线程: