/** * License: Public domain. * Description: This snipped integrates the OIDC connect button with WooCommerce * to allow importing the customer's shopping details via OIDC / Re:ClaimID. * Author Christian Grothoff */ // Modify OIDC connect button text for Reclaim:ID. add_filter( 'openid-connect-generic-login-button-text', function( $text ) { $text = __( 'Login with Re:ClaimID', 'gnutaler' ); return $text; } );