mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-30 11:42:22 +08:00
https://stackoverflow.com/questions/75880941/display-message-based-on-cart-items-count-in-woocommerce-mini-cart/75885937
10 lines
343 B
Text
10 lines
343 B
Text
add_action( 'woocommerce_widget_shopping_cart_total', 'wc_minicart_custom_text', 15 );
|
|
|
|
function wc_minicart_custom_text() {
|
|
if ( ! WC()->cart ) return;
|
|
if ( WC()->cart->get_cart_contents_count() > 2 ) {
|
|
echo '<p class="mini_cart_text">TEXT TWO</p>';
|
|
} else {
|
|
echo '<p class="mini_cart_text">TEXT ONE</p>';
|
|
}
|
|
}
|