Skip to content

Instantly share code, notes, and snippets.

View Billy-Adams's full-sized avatar

Billy Adams Billy-Adams

View GitHub Profile
@MindyPostoff
MindyPostoff / gist:a10148daa110119b262f
Last active November 14, 2019 19:05
Change "Proceed to PayPal" Text on Checkout Button in WooCommerce
/* Change the "Proceed to PayPal" button text in the WooCommerce checkout screen
* Add this to your theme's functions.php file
*/
add_filter( 'gettext', 'custom_paypal_button_text', 20, 3 );
function custom_paypal_button_text( $translated_text, $text, $domain ) {
switch ( $translated_text ) {
case 'Proceed to PayPal' :
$translated_text = __( 'NEW BUTTON TEXT', 'woocommerce' );
break;
}