Hola,
En este caso puedes probar modificar el texto añadiendo el siguiente código en el function.php de tu tema o un plugin como code snippets
function webempresaForo_change_text( $translated_text ) {
if ( $translated_text == 'No products in the cart.')
{ $translated_text = 'No hay producto en el carrito'; }
return $translated_text; }
add_filter( 'gettext', 'webempresaForo_change_text', 20 );
Puedes probarlo y verificar como va todo
Un Saludo