Hello,I need to configure one of the tpls of a Datatype only for two branches. I tried the following code in the templating.cfg but am unable to achieve what i need. Can someone please help me with this on urgent basis.example Datatype is Headlinethe two branches for which i need to enable HeadlinePC.tpl is /main/b/ and/main/y/ [html][/html]- DixitNote: Couldn't get to add the code, so am attaching a txt file
... <branch vpath-regex="[/main/b/|/main/y/]" preview-dir="/templatedata/iw_preview">...
... <branch vpath-regex="/main/(b|y)/" preview-dir="/templatedata/iw_preview">...
Looking at the file you posted - I see:... <branch vpath-regex="[/main/b/|/main/y/]" preview-dir="/templatedata/iw_preview">...square brackets are for character classes, not either/or statements - parentheses are for either/or statements - so I think what you want may be:... <branch vpath-regex="/main/(b|y)/" preview-dir="/templatedata/iw_preview">...