Please add Single Question page to Pages list in AnsPress Options

Hello, Single question is not a page its single post. You can simply override its layout by creating a single template for question type which is single-question.php.

BuddyPress mention not possible in AP

Hello Fred, Thanks for suggestion. I will add it to future developments list.

How can I let users ask questions anonymously?

Yeah, I’m definitely in with it. A checkbox for logged in user to be able to ask question anonymously would be a very useful feature. Hope it’ll be done soon.

How to insert pdf word file on my site ? 2

I have same issue with @ridan. this link: How to add a PDF upload field in AnsPress question form?. only works in question form but the uploaded file didn’t appear in Single question page. Please help @Kumar @rahul

How do you display categories?

Hello Emmett, Just removing page argument from shortcode did it. As I said many times to remove page argument from shortcode. Passing a page argument force shortcode to render a specific page.

The profile page redirect to the homepage

Hello, Please read the release notes and FAQ for instruction on updating. Make sure you have created main pages and updated anspress options.

4.1.1 title solved problem

Hello, As I can see source code, [[solved]] is only applied to browser title not single question title (I am not sure about reason, may be its not required for SEO anymore!). You can add below code to your theme’s functions.php to fix it: function my_ap_the_title( $title, $ID ) { $post = ap_get_post( $ID ); if ( 'question' === $post->post_type && ! empty( ap_selected_answer( $ID ) ) ) { return $title . ' [solved]'; } return $title; } add_filter( 'the_title', 'my_ap_the_title', 10, 2 );

4.1.1 title solved problem

No answers. Thank you Rahul Aryan :/

How to insert pdf word file on my site ? 2

Hi, The old version is easy, I misunderstood you, before we can posted pdf files, and now it’s over?And why use another plugin? How to make it compatible? I do not understand !

404 page after anonymous user submit questions

Maybe you can add a custom 404 page to your theme. Or just not hold the questions for moderation.