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.
@Dima, yes, I see what you mean. Its even worse than that on my site. For example, here’s an answer link on my site ~ http://wpexpert.support/questions/question/test-question/?show_answer=1813#answer_1813 With the snippet I get ~ http://wpexpert.support/questions/question/test-question/#answer_1813 A lot better, but not exactly ideal ~ which is not your fault, of course. And why do you “highly recommend using CSS like the one I use”? What’s the thinking behind it?
Extending @dima’s answer, Add this to your theme functions.php: https://gist.github.com/rahularyan/e9617db20834379fd2b4
Yes it can be provided easily. Did you tried their example code?
function get_post_excerpt_by_id($post_id) { global $post; $post = get_post($post_id); setup_postdata($post); $the_excerpt = get_the_excerpt(); wp_reset_postdata(); return $the_excerpt; } add_action('wp_head', 'd_developer_of_matt_please'); function d_developer_of_matt_please() { if (function_exists('is_question') && is_question()) { echo '<meta name="description" content="'. get_post_excerpt_by_id(get_question_id()).'"/>'; } }
This was an old problem with Anspress. Fixed in 2.4. Anspress was messing those permalinks.
That’s really much to ask at the same time. I’ll respond your email part. it works fine for me. Try installing one of wp mail log plugins to make sure mails are not getting sent. After you verify it, describe your issue in more details, with real example(s).