-6ren">
gpt4 book ai didi

php - 在购物车 Wordpress 上隐藏柜台

转载 作者:行者123 更新时间:2023-12-04 10:02:41 24 4
gpt4 key购买 nike

购物车为空时如何隐藏计数器? Wordpress - woocommerce - supro 主题

<a href="<?php echo esc_url( wc_get_cart_url() ) ?>" class="cart-contents" id="icon-cart-contents">
<?php echo wp_kses_post( $icon_cart ); ?>
<span class="label-item cart-label"><?php echo wp_kses( $cart_html, wp_kses_allowed_html( 'post' ) ); ?></span>
<span class="mini-cart-counter"><?php echo intval( $woocommerce->cart->cart_contents_count ); ?></span>
</a>

Tnx

最佳答案

更新:将此代码添加到您的子主题 函数.php

add_action( 'wp_head', 'x_hide_cart' );
function x_hide_cart(){
if ( WC()->cart->get_cart_contents_count() == 0 ) {
?>
<style type="text/css">.x-menu-item-woocommerce{display: none;}</style>
<?php
}
}

关于php - 在购物车 Wordpress 上隐藏柜台,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61751498/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com