Hello,
I have a simple question.
How can I localize your AnsPress to my language CZ ?
Which files do I have to change ?
Thank you for help.
Peter P.
I see the Anspress Editor here has buttons instead of text. In my website sciptutor.com/questions/ the anspress editor has text which seems to be completely different from this one. Also, the Insert Image and Insert Code aren’t working. What might be the possible cause?
Hello.
I want to add a new button to the profile section and edit one of the profile titles. Is this possible?
Hi,
I am using Anspress in conjunction with Buddyboss theme. Everything is working fine in desktop browsers.
However, on iPhone using any browser (Safari, Edge Brave tested) the ‘Ask a Question’ page will not load the Ask a question form. It works fine on a desktop browser.
Are there any known bugs or fixes for this?
I am trying to change my categories page from side to side to where they are on top of each other, up and down one by one. Is there a way to do this?
hi, when I add a category in the anspress plugin, the permalink before the category name is questions__trashed/category/social-media/. How can I remove the __trashed part.
I want it to be in the form of questions/category/social-media/ how can I do it.
https://www.basvurusu.net/soru-cevap__trashed/kategori/sosyal-medya/
on my site anspress question URL ending with “/” is automatically getting stripped after opening the question page.
This is creating canonical pages without proper configuration.
And so generating issue in Ahrefs.
Solution : update permalink configuration where URL ends without “/”
Hi,
When are you please adding a QAPage schema for AnsPress?
Kindly,
É possível o plugin já reconhecer e listar as categorias já existentes no WordPress?
hello, i made 2 custom fields and added it to the ask form using the following:
/** * Add custom fields to AnsPress question form. * * This hook will add two new fields in ask form. * * @param array $form Form arguments. * @return void */ function my_custom_question_field( $form ) { // City Field $form['fields']['City'] = array( 'label' => __( 'City' ), 'desc' => __( 'Enter name of your city.' ), 'subtype' => 'text', // Default type is set to input. 'attr' => array( 'placeholder' => 'Example: Jaipur, Pune, etc.', ), ); // City Field $form['fields']['Ph.Number'] = array( 'label' => __( 'Phone Number' ), 'desc' => __( 'Enter Your mobile/Whatsapp number' ), 'subtype' => 'tel', // Default type is set to input. 'attr' => array( 'placeholder' => 'Phone Number', ), ); return $form; } add_filter( 'ap_question_form_fields', 'my_custom_question_field' );
now, i want to know where this data is stored, and how can i show this to the backend for my client, cheers!