Вы можете изменить текст корзины, изменив категорию.если вы хотите изменить побочный текст корзины, вы можете добавить идентификатор продукта.
add_filter( 'woocommerce_product_add_to_cart_text', 'bbloomer_archive_custom_cart_button_text' );
function bbloomer_archive_custom_cart_button_text() {
global $product;
$terms = get_the_terms( $product->ID, 'product_cat' );
foreach ($terms as $term) {
$product_cat = $term->name;
break;}
switch($product_cat){
case 'category1';
return 'Category 1 button text'; break;
case 'category2';
return 'Category 2 button text'; break;
default;
return 'Default button text when no match found'; break;
}
}