Deprecated: Function seems_utf8 is deprecated since version 6.9.0! Use wp_is_valid_utf8() instead. in /home/dplugins-code/htdocs/code.dplugins.com/wp-includes/functions.php on line 6131

Deprecated: Function seems_utf8 is deprecated since version 6.9.0! Use wp_is_valid_utf8() instead. in /home/dplugins-code/htdocs/code.dplugins.com/wp-includes/functions.php on line 6131
Woo: Change the No Product in cart text on the Oxy Ultimate Woo plugin – Code DPlugins

Woo: Change the No Product in cart text on the Oxy Ultimate Woo plugin

This is a snippet for Oxy Ultimate Woo plugin that allows you to change the default “No product in cart” to anything you like.

Credit to the Developer, you can see the original code here

<?php //* do not include this line

add_filter( 'gettext_woocommerce', 'ouwoo_translate_cart_text', 10, 3);
function ouwoo_translate_cart_text( $translated_text, $text, $domain ) {
  switch( $translated_text ) {
    case 'No products in the cart.' : 
      $translated_text = "ENTER YOUR TEXT HERE";
      break;
  }
  return $translated_text;
}
Click to Copy