See my code below along with error message.
CREATE TRIGGER SubscriptionDescriptionNotes
ON [dbo].[Subscriptions]
AFTER INSERT, UPDATE
AS
UPDATE dbo.Subscriptions
SET [Description] = -- parse Parameter column and add to Description
[Parameters] + Description
FROM [dbo].[Subscriptions] s
WHERE s.[Parameters] LIKE '' --again parse parameter with condition what you want
Msg 402, Level 16, State 1, Procedure SubscriptionDescriptionNotes, Line 13 The data types ntext and nvarchar are incompatible in the add operator.