Simply open ap.pot using poedit and chnage ans value to whatever you want and then save file as ap-en_US.po (en_US is your default language).
Do you mean the ask button?
Have you tried https://anspress.io/documents/ ?
If you are using the AskBug theme, there is no need to use the “WP Admin No Show” plugin because the redirection is all built into “Theme My Login”, which is a recommended part of the AnsPress/AskBug install.
Hi, V. WordPress stores all users in one place. So every registered “forum participant” is actually a user in your wordpress. But that doesn’t mean he must have access to your wordpress backend. go to wordpress options and set default registered user role to “anspress participants”. install this plugin. http://4.stefantsov.com/s/?2015.12.13_3.20.44_8t4wqtzp.png I also recommend spend additional time but installing WordPress Social Login for 1click registration and auth. This is not required. This is how I do it, look at the results: http://dima.stefantsov.com/qa/
Update the plugin from GitHub – that will fix the follow problem.
Showing rows 0 – 0 (1 total, Query took 0.0021 sec) [apmeta_id: 1 – 1] SELECT * FROM `wp_ap_meta` WHERE apmeta_type = 'subscriber' 1 2 subscriber 1829 2015-10-25 06:00:39 The only “subscriber” is in October. Looks like it needs to be updated for the new wp_ap_subscribers table. Currently it uses ap_get_question_subscribers_data().. $query = $wpdb->prepare("SELECT u.user_email, u.ID, u.display_name, UNIX_TIMESTAMP(m.apmeta_date) as unix_date FROM ".$wpdb->prefix."ap_meta m INNER JOIN ".$wpdb->prefix."users as u ON u.ID = m.apmeta_userid where m.apmeta_type = 'subscriber' AND ( m.apmeta_actionid = %d $term_q) GROUP BY m.apmeta_userid", $post_id); to get all emails where notifications should be sent. When notifying on a comment, it’s simply if(!ap_in_array_r($post_author->data->user_email, $subscribers)){ $subscribers[] = (object) array('user_email' => $post_author->data->user_email, 'ID' => $post_author->ID, 'display_name' => $post_author->data->display_name ); } this is why notification on comments work.
Same problem here as well.
Looks like emails are being sent in full quantity only to admin indeed. I have email logs for more than a month now, my wordpress sent password lost emails to users, my wordpress sent “new comment” email to user. It does not send “new answer” to user. This is what I see at a glance.
I just pushed a fix to GitHub repo.