我试图将一些店面的自定义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
这似乎与店面标头cart上的ajaxified cart fragments 有关。
- 首先要完全清空购物车,并检查它与缓存无关。
- Ajaxified CART Fragments 是
woocommerce_add_to_cart_fragments
,因此您应该尝试在店面源代码中找到一些相关的挂钩功能代码。
请参阅标题购物车计数上Ajax周围的那些相关线程:
- ajaxify头推车项目在wooCommerce中计数
- 自定义购物车计数没有在不重新加载WooCommerce中进行更新