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!!

I don’t know if is a issue, but just in case: If I deleted a question, is deleted from “My questions” page, but I can still see the question in the “Activiy” page.

Thanks.

Hi,

As of now, email notifications to users are showing “WordPress” on the ‘From’ field.

And the email address is ‘[email protected]

I need to edit both these fields.

Please tell me how.

Thanks!

Hello,

Recently launched my sites here and here. I have Anspress set up on both. I just got an email from a user saying that they were unable to post a question.

Any ideas?