Hello,
Have built a module with CTLMM, and also integrated it with the FEU module, so that users can update their own items.
This all works fine, however, after clicking submit in the front end edit form, I would like the user to get redirected to another page (like a thankyou page). At the moment, they just get the same page with the form.
Is this possible? I notice the options in the settings, but this seems to get ignored...??
Any help?
Many Thanks
CTLModuleMaker frontenduser edit redirect issue
Re: CTLModuleMaker frontenduser edit redirect issue
I tried the same and failed.
As a workaround I inserted a button to the detail view of the edited item this way:
As a workaround I inserted a button to the detail view of the edited item this way:
Code: Select all
<a href="{cms_module module="YOUR_MODULE" action="link" what="ENTITY" alias=$item->alias->value}">Detailview Item</a>
Re: CTLModuleMaker frontenduser edit redirect issue
Thanks klenkes that did work, got it going now.
Re: CTLModuleMaker frontenduser edit redirect issue
I did use that trick too, helpful! Thank you.