Code-Snippets-Functions/Execute a function on a child site/Astra/change-proceed-to-checkout-text.txt
2023-05-25 14:32:31 -06:00

7 lines
304 B
Text

function change_proceed_to_checkout_text( $translated_text, $text, $domain ) {
if ( 'woocommerce' === $domain && 'Proceed to checkout' === $text ) {
$translated_text = 'Your Custom Text';
}
return $translated_text;
}
add_filter( 'gettext', 'change_proceed_to_checkout_text', 20, 3 );