So that makes 2 english mistakes at my end 🙂 DeprAcated it is and indeed that’s what it means. By “I cannot get it”, I meant “I am not able to download it when I click the download button” instead of “I do not get what it means” 🙂
DEPRECATED. Not Depricated. http://whatis.techtarget.com/definition/deprecated means not supported any more, discontinued, replaced with something else.
Akanjana, What do you mean “front end plugin?” Thanks, Emmett
I fixed notification for BP and it is working well, but I still have issue with deleting comments notifications if I delete whole question or answer. I will need to make a deleting loop for comments. So notifications are now working, but they are not dismissed after clicking them. So how can I trigger a “read notification” after click and redirect to where that notifications leads?
Hello, We only have AskBug theme at the moment. But it will be very easy to make theme matching Stackoverflow. You can read docs about AnsPress override and let me know when you need further help.
Nevermind, I modified that part and I am now checking if post type is question or answer. Only then mail notification will be sent.
Delete permanently a Question is not working only if there are some answers. If question has no answers, then it is working. And this is because when ap_subscribers_count is parsing $item_id, then for question it is returning correct value, but for answer it is returning whole post meta data. I added a quick fix for that, not pretty, but it is working: if ( array_key_exists('ID', $item_id) ){ $item_id = $item_id->ID; } added in function ap_subscribers_count (subscribers.php) before: $key = $item_id.'_'.$activity;
Any updates?