Has anyone figured out a way around that so they get notified there is a message waiting for them? If they put in their WhatsApp number then people do not have to login in to see what it defeats the purpose of a paid membership
Thoughts?
Has anyone figured out a way around that so they get notified there is a message waiting for them? If they put in their WhatsApp number then people do not have to login in to see what it defeats the purpose of a paid membership
Thoughts?
I do believe there is a hookable event before the message goes out that the plugin could hook into and rewrite the message.
Oxwall is set up to where you can listen for that event, before (such as before deleting), during, or after the event, and then have your plugin do something.
Check out the classes folder and the event_handler.php file. You will see events listed on the bottom, that code binds your plugin to that event and then runs your function in the listener accordingly.
This is called hooking into an event.
There are too many events to list here but there are alot of them. Most of them are listed in the core files if i remember correctly.
Many oxwall plugins use events like registration, adding a photo, deleting a photo, that sort o0f thing, when you do something on oxwall its called an event.Many thanks for that complete information!
Oxwall is set up to where you can listen for that event, before (such as before deleting), during, or after the event, and then have your plugin do something.
Check out the classes folder and the event_handler.php file. You will see events listed on the bottom, that code binds your plugin to that event and then runs your function in the listener accordingly.
This is called hooking into an event. visit official site
There are too many events to list here but there are alot of them. Most of them are listed in the core files if i remember correctly.