Skip to content

Instantly share code, notes, and snippets.

@DxDiagDx
Last active July 26, 2021 06:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DxDiagDx/5f7ba4b03a31858eba5ec15e0332f11f to your computer and use it in GitHub Desktop.
Save DxDiagDx/5f7ba4b03a31858eba5ec15e0332f11f to your computer and use it in GitHub Desktop.
Woo: Custom text on checkout page / Свой текст на странице оформления заказа
/**
* Текст на странице оформления заказа
*/
add_filter('woocommerce_thankyou_order_received_text', 'woo_my_thankyou_order_received_text' );
function woo_my_thankyou_order_received_text() {
return 'Спасибо. Ваш заказ был принят.</br>В ближайшее время с вами свяжется менеджер для подтверждения.';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment