In V7, a DB query will show all nodes where a particular macro is being used:
DECLARE @macro VARCHAR(50);
SET @macro = 'yourMacroName';
SELECT DISTINCT [cmsPropertyData].[contentNodeId], [umbracoNode].[text]
FROM [Umbraco].[dbo].[cmsPropertyData]
INNER JOIN umbracoNode ON cmsPropertyData.contentNodeId=umbracoNode.id
WHERE dataNtext LIKE '%'+@macro+'%';
I'm trying to find something similar that can show the same for V13. No luck yet.
How can you find which pages in site Form macros are used?
Hi,
I want to find out which pages in a site the Form macros have been added.
I know how to iterate though all the nodes in code but how would you determine if a Form macro is on there?
Is there a way to do this?
Thanks!
In V7, a DB query will show all nodes where a particular macro is being used:
I'm trying to find something similar that can show the same for V13. No luck yet.
is working on a reply...