/** * This code is in the public domain. * * This snipped integrates the OIDC connect button with WooCommerce * to allow importing the customer's shopping details via OIDC / Re:ClaimID */ // 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; });