Skip to content

Instantly share code, notes, and snippets.

@xlplugins
Last active October 26, 2023 07:56
Show Gist options
  • Save xlplugins/bad47f5bc6e8c31ff438777a81d4c6d7 to your computer and use it in GitHub Desktop.
Save xlplugins/bad47f5bc6e8c31ff438777a81d4c6d7 to your computer and use it in GitHub Desktop.
Change text of smart buttons title "Express Checkout" and "OR"
/* Change text of smart buttons title*/
add_filter('wfacp_smart_button_legend_title',function (){
return __( 'Express Checkout2', 'woofunnels-aero-checkout' ) ;
});
/* Change "OR" text between smart buttons and checkout form */
add_filter('wfacp_smart_button_or_text',function (){
return 'OR2';
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment