Answer the question
In order to leave comments, you need to log in
How to replace the inscription on the buy button for certain categories?
Change on the whole site from "Add to cart" to "Rent"
// замена стандартных текстов
function rog_shop_strings( $translated_text, $text, $domain ) {
if( 'woocommerce' === $domain ) {
switch ( $translated_text ) {
case 'Добавить в корзину' :
$translated_text = 'Арендовать';
break;
}
}
return $translated_text;
}
add_filter( 'gettext', 'rog_shop_strings', 20, 3 );
// замена стандартных текстов
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question