I want this input to be of type=”number” and with min=”0.50″ and step=”0.25″, but it doesn’t work. The field stays as an integer and can allow negative numbers. Why is this happening?
public function ask_form_amount_field($args, $editing){
if(wp_count_terms('question_amount_field') == 0)
return $args; //Taxonomy stuff?
global $editing_post;
if($editing){
$amount_field = get_the_terms( $editing_post->ID, 'question_amount_field' );
$amount_field = $amount_field[0]->term_id;
} //More things purely related to taxonomy, it seems.
$args['fields'][] = array(
'name' => 'amount_field',
'label' => __('Amount field label', 'amount_field_for_anspress'),
'type' => 'number',
'value' => ( $editing ? $amount_field : sanitize_text_field(@$_POST['amount_field'] )),
'taxonomy' => 'question_amount_field',
'orderby' => ap_opt('form_amount_field_orderby'),
'desc' => __('Enter the amount you wish to tip someone for fulfilling your request.', 'amount_for_anspress'),
'order' => 7,
'min' => 0.50,
'step' => 0.25
);
return $args;
}On the base page, I see the slots for the two questions I have posted but I don’t see the questions. You can see the amount of answer and votes the questions have (which are both 0 because I just posted them and because you cannot access them). I don’t think it is a font color problem because even when trying to highlight, I cannot see the questions.
This is the site: http://www.neweradetroit.com/discussions
I am trying to translate AnsPress into Traditional Chinese of Taiwan, “zh_TW”, is there anywhere I can contribute my translation or work with other translators?

I added the last tags extension from github and am unable to add new tags from the front end. When in the admin section, I can easily add new tags. Thanks for your help!
When I put “user profile” and “user notification” on menu bar, these 2 items are not clickable, not things happen when you click it.
My server is throwing 500 errors whenever I try to add a new question. This issue is happening on multiple subdomains of mine, and I have already checked the file permissions, and replaced the post-new.php with the default one. I have also tried deactivating all other plugins, and the plugins I am using are up to date. The error it is throwing me is below:
[Tue Sep 29 18:25:07 2015] [error] [client 173.227.74.5] Premature end of script headers: post-new.php, referer:http://asdf.chatterhorn.com/wp-admin/
[Tue Sep 29 18:25:25 2015] [error] [client 173.227.74.5] Premature end of script headers: post-new.php, referer:http://asdf.chatterhorn.com/wp-admin/
[Tue Sep 29 18:27:22 2015] [error] [client 173.227.74.5] Premature end of script headers: post-new.php, referer:http://asdf.chatterhorn.com/wp-admin/
[Tue Sep 29 18:27:40 2015] [error] [client 173.227.74.5] Premature end of script headers: post-new.php, referer:http://demo.chatterhorn.com/wp-admin/
Any ideas on why this might be happening and how to fix it?