Hi,

There seems to be an issue with the upload of the profile picture.
When I use this picture on this site or mine, I get a no-image icon (see my profile on this site).

What is wrong?

I’m looking forward to Version 2.0, but I see that you are also going to be releasing a theme for it. Is the plugin also going to continue to be theme independent so it can be used with any theme? Or are you going to start tying it all together. I prefer theme-independent, that the reason I chose a plugin over a Q&A theme in the first place. I just want the functionality that you provide.

Hello folks,
Here is today’s shot of ask page with similar question suggestions.
This new design was suggested by one of our contributor Chad, Do not forget to say him thanks.
Ask page will take one more day, cause Chad suggest a design for category selection and also told me to add icons in category, Its looking nice that way so I am going to implement it too.
And sorry for delay in releasing.

There is a way to integrate anspress to buddipress?

Thank You

Use this theme but not reisco to probe siedebar of defoult.
May depend on what?

Thank You

There is a translation in Italian?
If not, where can I find the files to be translated?
Thank You

At last ask question page is ready,
Here is the screenshot:

Added an easy method for form validation and sanitzation,
Here is an example:

$args = array(
	'title' => array(
		'sanitize' => array('sanitize_text_field'),
		'validate' => array('required' => true, 'length_check' => ap_opt('minimum_qtitle_length'))
	),
	'description' => array(
		'validate' => array('required' => true, 'length_check' => ap_opt('minimum_question_length'))
	),
	'is_private' => array(
		'sanitize' => array('only_boolean')
	),
);

$validate = new AnsPress_Validation($args);

var_dump($validate->get_sanitized_fields());
var_dump($validate->get_errors());

Hi, bravo for great design , how can activate register form as a new visitor? i don’t know if i miss something at solved questions. HAPPY NEW YEAR!

Added advance form system in AnsPress 2.0. Now it will be much easier to add new fields or modify existing form fields.
Now you can use filters to modify or add new fields.

Here is an example

    $args = array(
            'name'              => 'ask_form',
            'is_ajaxified'      => true,
            'fields'            => array(
                array(
                    'name' => 'title',
                    'label' => __('Title', 'ap'),
                    'type'  => 'text',
                    'placeholder'  => __('Question in once sentence', 'ap'),
                    'value' => sanitize_text_field(@$_POST['title'] )
                ),
                array(
                    'name' => 'category',
                    'label' => __('Category', 'ap'),
                    'type'  => 'taxonomy_select',
                    'value' => sanitize_text_field(@$_POST['category'] ),
                    'taxonomy' => 'question_category'
                ),
                array(
                    'name' => 'is_private',
                    'label' => __('Private', 'ap'),
                    'type'  => 'checkbox',
                    'desc'  => __('This question ment to be private, only visible to admin and moderator.', 'ap'),
                    'value' => sanitize_text_field(@$_POST['is_private'] )
                ),
            ),
        );
    $form = new AnsPress_Form($args);

    echo $form->get_form();