Questions about TAGS

Tags is disabled, check plugins.

Display Question in the Header

Override question.php, add this at top: <div class="page-header questions-header clearfix"> <div class="container"> <h1 class="entry-title"><?php the_title(); ?></h1> <div class="ap-question-meta clearfix"> <?php echo ap_display_question_metas() ?> </div> </div> </div> Add this in you theme style.css .page-header.questions-header { background-image: url("/wp-content/themes/site/images/code.jpg?1aa825"); background-position: center center; background-repeat: no-repeat; background-size: cover; text-align: center; text-shadow: 0 1px 7px rgba(0, 0, 0, 0.46); }

Can you make tags NOT mandatory

Rahul, it  just doesn’t work no matter what i write. I use all your latest versions at github.  

Can you make tags NOT mandatory

Now tags extension will not check tags count if minimum tag is set to zero. Push has been made to Github repo for AnsPress and tags extension.

Can you make tags NOT mandatory

I think the “field is required” is because you need to have PRESELECTED added tags. The poster can’t write his own tag.

List of websites using Anspress

http://dima.stefantsov.com/qa/ Using it on my personal blog and hoping to use it as comments system as soon as it will be supported by AnsPress.

List of websites using Anspress

Ill share when its complete

What hook should I use if I want to trigger an event after post is published?

It goes like this: process_form() process_ask_form() wp_insert_post() add_action( ‘save_post’, ‘action_on_new_post’) action_on_new_post() do_action( ‘ap_processed_new_question’) add_action( ‘ap_processed_new_question’, ‘after_new_question’) after_new_question() do_action( ‘ap_after_new_question’) // <— add_action( ‘ap_after_new_question’, ‘new_question’ ) new_question() add_action( ‘ap_after_new_question’, ‘new_question’ ); //reputation new_question() //reputation Really simple!