I am using Yoast SEO and AnsPress plugins.
In Yoast Snippet editor when we change the URL & update it the question permalink gets updated but URL doesn’t change in Snippet Editor.
Are there shortcodes we can use in order to show the list of questions in the homepage for example? I would like to show the last 5 questions and output them using the same layout you use (I will use CSS to change stuff here and there.)
Thanks!
Hi. I’m trying to change a string like ‘Ask Question’ to ‘Post’.
I’ve read that I have to use WP translation but I just couldn’t understand how to do it. There’s a post that says ‘wplang’ in wpconfig, but when I go there, there is none set.
Can you provide a definitive noob guide on how to do this? I’ve also tried poedit to make a new translation but I don’t know how to make my uploaded .mo .po file the default file.
I’m out of my wits here.. Can someone help.
Thanks.
if you use a combination of AnsPress and its Categories plugin, is it possible to restrict some categories so that only users with correct permissions can access them?
Having trouble setting up the blog page, need assistance. Also, is the blog page for admin only or can users create blogs?
Hi,
I am using version 2.3.1, when I update to 2.4.4 I lose current notifications and notfication function doesn’t work too.
Note: Nope 2.4 removes notfications too.
Thanks.
Hi,
I want to create some relationship between wpDiscuz – Supercharged native comments plugin and Anspress. In this plugin there are a code like when you vote up or down it changes comment’s meta key’s value. I want to change user reputation according to up or down vote by user id. I want to create notification in comment likes and dislikes about reputation change.
How can I create a custom notification and call it?
Thanks.
I want the users cans see the answers in the questions from old to new. So I have checked in the options ‘oldest’.
But in the user Answers page, I want to see the anwers from new to older.
So I modified the answer-loop.php to make a new query. It works, but the dates of the answers are incorrect. In the first page all answers get the same date, in the second page all answers have other date, but is the same for all the page.
Here’s my file:
<div id="ap-lists"> <h3 class="ap-user-page-title clearfix"> <?php echo ap_page_title() ?> </h3> <?php if ( ap_have_answers() ) : ?> <div class="ap-answers"> <?php $authorID = ap_answer_get_author_id(); $paged = get_query_var( 'paged' ) ? get_query_var( 'paged' ) : 1; $args = array( 'post_type' => 'answer', 'author' => $authorID, 'orderby' => 'meta_value', 'paged' => $paged, 'order' => 'DESC' ); $the_query = new WP_Query( $args ); while ( $the_query->have_posts() ) : $the_query->the_post(); ap_get_template_part('user/list-answer'); endwhile ; ?> </div> <?php ap_answers_the_pagination(); ?> <?php else : include(ap_get_theme_location('content-none.php')); endif; ?> </div>
How can i fix this? Or is another easy way to do it?
Thanks a lot!!