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!
hello
i add custom_question_field and want to send the data that enterd in this filed in the email which i reseved as admin
what tag can i use in email body ??
this is the custom_question_field
function my_custom_question_field( $form ) { // Url field. $form['fields']['website'] = array( 'label' => __( 'Your website' ), 'desc' => __( 'Enter link to your website.' ), 'subtype' => 'url', // Default type is set to input. 'attr' => array( 'placeholder' => 'https://mydomain.com/', ), 'sanitize' => 'esc_url', // This sanitize will be applied by default for url field. 'validate' => 'required,max_string_length', // Require and check length of string. 'max_length' => 50, // Required by max_string_length validation. );
Hello all,
i want disable ajax loading editor. Only textarea plain field for answer form.
Anyone can help?
Thank you.
Hey I love your plug in and its exactly what I need for my website. However, I need to know how to include the option for anonymous users to include their email address to get notified when an admin approves their questions and answers it. Similar to the notification option that is provided to users. I want to eliminate the need for creating user accounts on my website and have the question and answers to come primarily from anonymous users. The email they provide should not be visible to the public. It should only be used for notifying the user of question related updates.