You can change the branding string that is used throughout EmpowerID by replacing the global {ProductName} variable from EmpowerID to that of your own product. doing so involves replacing the variable in the dbo.ReplaceLocalizationWildcard scalar function in the EmpowerID Identity Warehouse and then executing that function. This topic describes how to do so.
USE EmpowerID
GO
/****** Object: UserDefinedFunction [dbo].[ReplaceLocalizationWildcard] ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER FUNCTION [dbo].[ReplaceLocalizationWildcard]
(
@TextToParse nvarchar(max),
@PersonID INT
)
RETURNS nvarchar(max)
AS
BEGIN
RETURN REPLACE(@TextToParse, '{ProductName}', 'Andys Beans')
END
You should see that the default global branding string has been replaced with the value you specified in the function.