function my_text_strings_public( $translated_text, $text, $domain ) {
switch ( $translated_text ) {
case 'No products in the cart.' :
$translated_text = __( 'В корзине пока нет товаров.', 'woocommerce' );
break;
}
return $translated_text;
}
add_filter( 'gettext', 'my_text_strings_public', 20, 3 );
/*
* Перевод любого текста на сайте WordPress, WooCommerce кодом
* Код добавить в function.php вашей темы
* Создано в motiv.by
*/