I have a new install of anspress. On the categories page the image and links appear for each category, but the links just go to blank pages.

I installed the Categories for AnsPress plugin but the links still go to blank pages. Since there are no pages for each category I can not install the anspress shortcode, so how can we get the category links to work?

I installed the mycred plugin and selected Hooks, ex: Points for Publishing Content, and the points appear in the mycred log. But they are not appearing in the users profile. How do I get this to correctly display the earned points for each user’s anspress account?

How do you prevent a users from answering their own questions and getting points for it?

Does anyone have a working hook for mycred for use when a vote is cast ? Been looking at this for a while, and would like to get it working.

I am trying to get a list of questions that all have a certain tag. I’m using WP_Query to do this. However, the following code doesn’t filter on the tag values:

 

$args = array(
‘post_status’ => array( ‘publish’ ),
‘post_type’ => ‘question’,
‘suppress_filters’ => true, //Bypasses content filtering by Groups plugin
‘orderby’ => ‘date’,
‘order’ => ‘DESC’,
‘tag’ => ‘my-tag’,
‘ignore_sticky_posts’ => true
);

$query = new WP_Query( $args );

// loop through the posts and build our endpoint data arrays
if ( $query->have_posts() ) {…do stuff … }

 

Is it possible to do this?