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. š
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?
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.
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.
@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 ? […]
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?
Yes of course. Just install a translation plugin and change texts to anything you want. BTW you can do it with POeditor as well.
Hello, Yes you can. Check documentation forĀ AnsPress_Reputation_Query().
Its coming soon to AnsPress.
All seems okay to me in your site. I think its solved then. Cheers.