I'm pretty sure that messages are displayed after a redirect in CCV6, for example in an event:
Now in a new project in Joomla 3.9.5 and CF v6.1.2 if I use a message followed by a redirect, no message is displayed.
I tried to accomplish that by using enqueueMessage in a php action followed by a redirect action to no avail.
I had to resort to an all php code action to get a joomla message displayed after the redirect:
{success:Saved!}At the moment I don't remember one of my projects in CFv6 that uses the message and redirect actions to get the same result but I'm sure there's one.
{redirect:index}
Now in a new project in Joomla 3.9.5 and CF v6.1.2 if I use a message followed by a redirect, no message is displayed.
I tried to accomplish that by using enqueueMessage in a php action followed by a redirect action to no avail.
I had to resort to an all php code action to get a joomla message displayed after the redirect:
$app = JFactory::getApplication();maxx
$app->enqueueMessage('Not saved', 'error');
$app->redirect('index.php?option=com_chronoforms6&cont=manager&chronoform=myform&event=myevent');