Ok, i'm now banging my head against a brick wall with this one. I am new to OOP trying hard to understand Q2A architecture to do basic plugin stuff
If i want to add a checkbox right after "email me to this adress if someone answers or comments" and do some php processing on answer button click if checkbox value is true, how should i proceed ?
i have created the plugin and layer page but what function should i call to add the checkbox to answer form ?
after that where should i insert the php processing :
if answer_button_is_clicked {
if (checkboxvalue==1) {
echo ' hello world';
}
i need your enlightenment please..