mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
https://stackoverflow.com/questions/51241826/change-wc-empty-cart-message-function-in-woocommerce-3-1
8 lines
430 B
Text
8 lines
430 B
Text
remove_action( 'woocommerce_cart_is_empty', 'wc_empty_cart_message', 10 );
|
|
add_action( 'woocommerce_cart_is_empty', 'custom_empty_cart_message', 10 );
|
|
|
|
function custom_empty_cart_message() {
|
|
$html = '<div class="col-12 offset-md-1 col-md-10"><p class="cart-empty">';
|
|
$html .= wp_kses_post( apply_filters( 'wc_empty_cart_message', __( 'Your cart is currently empty.', 'woocommerce' ) ) );
|
|
echo $html . '</p></div>';
|
|
}
|