why is this option available?

Posting the same question in 4 different links and formats is not going to do you any favour here @neoxi. https://anspress.io/questions/question/why-is-this-option-available/ https://anspress.io/questions/question/4-1-1-title-solved-problem/ https://anspress.io/questions/question/anspress-4-1-0-title-solved-problem/ https://anspress.io/questions/question/solved-problem-with-google-headers/ As I stated before: please remember that this is a community plugin written for free, with only a small handful of developers. I don’t think blaming AnsPress for removing a feature you insist is important for SEO is necessary, nor is the statement around expecting the developers to find a clear solution to this problem. “I constantly lose users” is not the fault of AnsPress in my view, and it’s unfair that you appear to have an expectation of a community based plugin offering a “paid for” support agreement when the plugin is completely free.

Override vote icons in 4.1.4

@Rahul – what I am looking to achieve is the below This function, from votes.php – see the bold and italic text. function ap_vote_btn( $post = null, $echo = true ) { $post = ap_get_post( $post ); if ( ! $post || ‘answer’ === $post->post_type && ap_opt( ‘disable_voting_on_answer’ ) ) { return; } if ( ‘question’ === $post->post_type && ap_opt( ‘disable_voting_on_question’ ) ) { return; } $vote = is_user_logged_in() ? ap_get_vote( $post->ID, get_current_user_id(), ‘vote’ ) : false; $voted = $vote ? true : false; if ( $vote && ‘1’ === $vote->vote_value ) { $type = ‘vote_up’; } elseif ( $vote && ‘-1’ === $vote->vote_value ) { $type = ‘vote_down’; } else { $type = ”; } $data = [ ‘post_id’ => $post->ID, ‘active’ => $type, ‘net’ => ap_get_votes_net(), ‘__nonce’ => wp_create_nonce( ‘vote_’ . $post->ID ) ]; $html = ”; $html .= ‘<div id=”vote_’ . $post->ID . ‘” class=”ap-vote net-vote” ap-vote=” . wp_json_encode( $data ) . ”>’; $html .= ‘<a class=”fa fa-angle-double-up ap-tip vote-up‘ . ($voted ? ‘ voted’ : ”) . ($vote && ‘vote_down’ === $type ? ‘ disable’ : ”) . ‘” href=”#” title=”‘ . __( ‘Up vote this post’, ‘anspress-question-answer’ ) . ‘” ap=”vote_up”></a>’; $html .= ‘<span class=”net-vote-count” data-view=”ap-net-vote” itemprop=”upvoteCount” ap=”votes_net”>’ . ap_get_votes_net() . ‘</span>’; if ( (‘question’ === $post->post_type && ! ap_opt( ‘disable_down_vote_on_question’ )) || (‘answer’ === $post->post_type && ! ap_opt( ‘disable_down_vote_on_answer’ )) ) { $html .= ‘<a data-tipposition=”bottom center” class=”apicon-thumb-down ap-tip vote-down’ . ($voted ? ‘ voted’ : ”) . ($vote && ‘vote_up’ === $type ? […]

Allow PDF upload for a comment to a question?

Hello Rahul, Thank you for the update. I added the code as provided, however the hook code resulted in a fatal error and could not be added. Is the hook going to allow for a PDF to be uploaded to a Reply of a Question?

override text

Yes of course. Just install a translation plugin and change texts to anything you want. BTW you can do it with POeditor as well.

Reputation filter month wise possible ?

Hello, Yes you can. Check documentation for AnsPress_Reputation_Query().

Bookmarking and Subscribe to category

Its coming soon to AnsPress.

search width layout is broken

All seems okay to me in your site. I think its solved then. Cheers.

Images do not upload

Hello Kambur,   AnsPress 4.1.4 can not add any image with a filename that contains a whitespace.   Workaround: On /anspress-question-answer/assets/js/tinymce-plugin.js, replace:   [S+]   with:   .   On /anspress-question-answer/includes/hooks.php, replace:   $plugin_array[ ‘anspress’ ] = ANSPRESS_URL . ‘assets/js/min/tinymce-plugin.min.js’;   with:   $plugin_array[ ‘anspress’ ] = ANSPRESS_URL . ‘assets/js/tinymce-plugin.js’;   Hopefully this addresses your problem. Please let me know if you have any question.   Thanks,   Adrian

Some translations don’t seem to work

SOLVED: Well – sort of. I ended up installing the Code Snippets plugin, and adding this as a snippet, which works function my_ap_activity_actions( $actions ) { $actions[’new_a’][’verb’] = ‘Responded to discussion’; $actions[’edit_a’][’verb’] = ‘Edited response’; return $actions; } add_filter( ‘ap_activity_actions’, ‘my_ap_activity_actions’ ); My question here is why does this not work within the child theme functions.php file ? Or within the themes/anspress directory ?

Some translations don’t seem to work

Ok. This is still an issue. Changing class-activity-helper.php (see below) works ‘edit_a’ => array( ‘ref_type’ => ‘answer’, ‘verb’ => __( ‘Edited response‘, ‘anspress-question-answer’ ), ‘icon’ => ‘apicon-answer’, ), But this function does not work at all function my_ap_activity_actions( $actions ) { $actions[’edit_a’][’verb’] = ‘Edited response‘; return $actions; } add_filter( ‘ap_activity_actions’, ‘my_ap_activity_actions’ ); Any ideas please ?