Compatibility with Buddyboss Global Search

Hi Junggu, I just stumbled upon the same issue. AP is indeed using custom post types but they are excluded from search by default. I’m trying to override this setting through a custom function but didn’t succeed yet. Here is the thread : https://anspress.io/questions/question/function-to-include-qa-cpts-in-global-search/

AnsPress Showcase – UPDATED

hi, really great site i also want to make a site like yours, here my site vote.paktua.id but i struggle to alter some text like you mention  “I have renamed “Questions” to “Discussions” and “Answers” to “Responses” and changed several lines within the PO language file to make this possible.” can you tell me how to do it? which PO file should i edit. thanks

Remove “order by” function on page listing all q and a’s

Hi Gordon, Same kind of answer as with your other question. The easy way would be to choose default questions order as “newest” in AnsPress Settings > Posts & Comments > Default Question Order, then hide the filter with CSS: #ap-filters { display: none; } I guess it should do the trick. 😉

Possible to have no date / time on q & as

Hi Gordon, The “easy” way would be to hide all date related elements with some CSS. For example: .ap-posted, .ap-post-history, .ap-post-updated, .ap-display-meta-item active { display: none; } would hide most of time related elements on a single question page. Like this: Would this be ok?

Ask to specific person

With a bit of customisation, anything is possible. AnsPress provides the basis, and you’d need to extend it from there. Out of the box, it should work with *most* themes, but isn’t actually a theme in it’s own right – it’s a plugin, which means it extends functionality. I’m in the process of putting together a platform that works in very much the same way. It’s a moving target, but take a look here and see if this is along the lines of what you are looking for.

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().