Currently wildcards are not accepted when you want to check for the current URL in the data comparison condition, e.g. you cannot react on "node/*" it's not being accepted.
How could this be achieved?
Thanks!
Currently wildcards are not accepted when you want to check for the current URL in the data comparison condition, e.g. you cannot react on "node/*" it's not being accepted.
How could this be achieved?
Thanks!
Comments
Comment #1
tr commentedUse the text comparison condition, then you can check if the URL starts with a given string. Or you can use a regex to do any sort of fancy pattern matching that you want.
Comment #2
drupov commentedActually true, thanks!