Строки «Out of of of of, пожалуйста, свяжитесь с нашим офисом продаж»
Кто-нибудь знает ли кто-нибудь, какой код я могу бросить в свои функции. php , который достигнет этого? PrettyPrint-Override ">
Код: Выделить всё
add_filter( 'gettext', 'custom_add_to_cart_stock_error_notice', 10, 3 );
function custom_add_to_cart_stock_error_notice( $translated, $text, $domain ) {
if ( $text === 'You cannot add that amount to the cart — we have %1$s in stock and you already have %2$s in your cart.' && 'woocommerce' === $domain ) {
$translated = __("You are currently trying to order more of this product than are currently available at your shipping location. Please call our sales team to discuss availability", $domain );
}
return $translated;
}
Подробнее здесь: https://stackoverflow.com/questions/661 ... rt-message