Comment Email, website and tag fields

Hi! Just to check: for tags, did you enable the “Tags” addon?

There’s no email templates [4.1.0]

Same problem here. I don’t mind writing my own emails anyway but there is an other issue: I can’t save my templates. Even with just one word inside, I keep getting an error message: Something went wrong, last action failed.

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 :/