This issue may happens if you specify tags into field of 'tag selector' type and if you have enabled Cache content setting in 'Settings'. This issue is caused by old tags list is cached in tag cloud. You may save blog document again or restart application in Administration -> System section. You may also consider setting Cache content to zero minutes during development phase.
To display document categories for each item/document in a transformation, you need to implement your own
function to the transformation and you need to call it with the DocumentID parameter:
DataSet ds = CMS.SiteProvider.CategoryInfoProvider.GetCategories("CategoryID IN (SELECT CategoryID FROM CMS_DocumentCategory WHERE DocumentID = " + docID + ")", null);
Now, you can just return categories from the dataset as a string with your required formatting.
-jh-
To display document categories as they are ordered in administration, please fill the ORDER BY expression property of a category web part like Category list with:
CategoryOrder
-jh-