EventPostSaveFilter delegate doesn't call callback function
This is an open discussion with 3 replies, filed under Extensions.
Search
Through all the extensions I’ve looked at, the function names are different. try naming the callback eventPostSaveFilter
with a lowercase e
The function name in my script is different. It’s just a Copy and Paste error when I simplified the example code.
Ok, I solved the issue…
I used the Dynamic Event Redirect extension with the same form/event and the EventPostSaveFilter
delegate of this extension called its callback and prevented the other EventPostSaveFilter
delegates to call their callback functions. Moving the EventPostSaveFilter
of the Dynamic Event Redirect extension in the sym_extensions_delegates
table to the bottom made the other callbacks get called again.
Create an account or sign in to comment.
I’m trying to add an EventPostSaveFilter callback function to an extension. I registered the delegate with
and it’s stored in the database.
But the callback function doesn’t get called after submitting a form on the frontend. Are there more steps involved to get an EventPostSaveFilter working?