Dec 07, 2020 4:28 pm
Hello!
Trying to see if there is a hook where I can check the custom fields I added. I added one, and I see it gets posted into wp_commentsmeta, with the information is present. Is there a hook where I can do this ?
My goal :
{
isItTrue = checkCustomField();
if(isItTrue === True){
doSomething();
};
}
Any help appreciated! Thank you.
1 Reply
Dec 07, 2020 11:34 pm
Found what I needed!
https://wpdiscuz.com/docs/codex/actions/wpdiscuz_before_save_commentmeta-2/
I was able to use this and update_comment hook to make customers anonymous, when they select a box, and enter a custom email for each post. If anyone is trying that, this is the route to go.
thanks for the help!