Title: Avi's Replies | WordPress.org

---

# Avi

  [  ](https://wordpress.org/support/users/avi25/)

 *   [Profile](https://wordpress.org/support/users/avi25/)
 *   [Topics Started](https://wordpress.org/support/users/avi25/topics/)
 *   [Replies Created](https://wordpress.org/support/users/avi25/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/avi25/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/avi25/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/avi25/engagements/)
 *   [Favorites](https://wordpress.org/support/users/avi25/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 20 total)

1 [2](https://wordpress.org/support/users/avi25/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/avi25/replies/page/2/?output_format=md)

 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Responsive Menu - Create Mobile-Friendly Menu] Does not work anymore](https://wordpress.org/support/topic/does-not-work-anymore-63/)
 *  [Avi](https://wordpress.org/support/users/avi25/)
 * (@avi25)
 * [2 years, 1 month ago](https://wordpress.org/support/topic/does-not-work-anymore-63/#post-17849919)
 * Dear [@viadiva](https://wordpress.org/support/users/viadiva/),
 * Thank you for taking the time to share your feedback. I’m truly sorry to hear
   about the issues you’ve experienced with the Responsive Menu plugin after the
   recent update. I understand the situation, especially since you’ve relied on 
   our plugin without any problems for years.
 * I want to assure you that your experience is important to us, and we are committed
   to resolving this issue promptly. We will ensure your issue is resolved as soon
   as possible.
 * As an alternative, try enabling the **wp_footer hook** from the Responsive Menu
   settings. Simply, navigate to the Responsive menu settings, under the advance
   tab you can click on the checkbox next to **Use wp_footer hook**.
 * ![](https://i0.wp.com/snipboard.io/kbQTvh.jpg?ssl=1)
 * If it doesn’t solves the issue, allow us a chance to help you. To help us investigate
   and fix this issue as quickly as possible, could you please provide us with some
   additional details about the problem you’re encountering? Specifically:
    - The version of WordPress and Responsive Menu plugin you are using.
    - Any recent changes or updates made to your website before the issue occurred.
    - The theme and any other plugins you are using that might be affecting the 
      menu.
    - Provide the URL of the affected website
 * We genuinely appreciate your patience and understanding. Our team is dedicated
   to improving our plugin and making sure it works flawlessly for all our users.
   If given the chance, we are confident we can get the Responsive Menu plugin working
   perfectly on your site again.
 * Thank you for being a valued user, and we look forward to resolving this issue
   for you soon.
 * Best regards,
   Avi
    -  This reply was modified 2 years, 1 month ago by [Avi](https://wordpress.org/support/users/avi25/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Quiz and Survey Master (QSM) – Quiz Maker & Survey Maker] Security Flaw, Spam](https://wordpress.org/support/topic/security-flaw-spam/)
 *  [Avi](https://wordpress.org/support/users/avi25/)
 * (@avi25)
 * [2 years, 1 month ago](https://wordpress.org/support/topic/security-flaw-spam/#post-17847818)
 * Hello [@accucomm](https://wordpress.org/support/users/accucomm/)
 * Yes, you can add the code in the functions.php file of the child theme of your
   website.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Quiz and Survey Master (QSM) – Quiz Maker & Survey Maker] Security Flaw, Spam](https://wordpress.org/support/topic/security-flaw-spam/)
 *  [Avi](https://wordpress.org/support/users/avi25/)
 * (@avi25)
 * [2 years, 1 month ago](https://wordpress.org/support/topic/security-flaw-spam/#post-17846242)
 * Hi [@accucomm](https://wordpress.org/support/users/accucomm/)
 * You can add the above mentioned code in the functions.php file of your theme.
 * Here’s how:
    1. Navigate to Tools from your wordpress website’s sidebar menu
    2. Select, Theme File Editor
    3. A new page will load, here make sure your current theme is selected at the top
       right corner dropdown.
    4. Under Theme Files section, select functions.php
    5. Now the functions of your themes will be listed in “Selected file content” section
       at the left
    6. You can add the provided code at the end of your file.
 * Once done, just click on “Update file” button
 * I hope this help, feel free to contact us if you face any trouble, I’d do my 
   best to resolve it for you.
 * Regards,
   Avi
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Quiz and Survey Master (QSM) – Quiz Maker & Survey Maker] Security Flaw, Spam](https://wordpress.org/support/topic/security-flaw-spam/)
 *  [Avi](https://wordpress.org/support/users/avi25/)
 * (@avi25)
 * [2 years, 1 month ago](https://wordpress.org/support/topic/security-flaw-spam/#post-17842536)
 * Hi [@accucomm](https://wordpress.org/support/users/accucomm/) ,
 * Thank you for sharing your detailed feedback and for your patience while we reviewed
   your issue.
 * We understand your concerns and at first, I want to assure you that we take security
   and user experience very seriously at QSM. We sincerely apologize for any negative
   experience you’ve had with our plugin.
 * Regarding the spam entries, we’ve thoroughly reviewed the screenshots you provided.
   It appears that the attackers might be bypassing browser-level validations. To
   address this, we can help you implement a custom code solution that adds an extra
   layer of validation to your quizzes. This should help reduce spam entries significantly.
   Here’s the code snippet you can use:
 *     ```wp-block-code
       function qsm_validation_submit_results_before( $qmn_quiz_options, $qmn_array_for_variables ) {    global $mlwQuizMasterNext;    $mlw_qmn_timer = isset( $_POST['timer'] ) ? intval( $_POST['timer'] ) : 0;    if ( 0 === $mlw_qmn_timer ) {        echo wp_json_encode(            array(                'display'       => __( 'Invalid Request!', 'qsm-recaptcha' ),                'redirect'      => false,                'result_status' => array(                    'save_response' => false,                ),            )        );        exit();    }}add_action( 'qsm_submit_results_before','qsm_validation_submit_results_before', 2, 10 );
       ```
   
 * This code will help ensure that only valid submissions are accepted, adding an
   additional check that should help mitigate spam attacks.
 * We’re continuously working to improve our plugin’s flexibility. We respect your
   choice and are here to help you with any other solutions that might fit your 
   needs.
 * To further clarify the usefulness of the Captcha question in QSM, we have created
   a short screen recording demonstrating how it works effectively to block basic
   spam entries. This can be a quick and easy solution for many users facing similar
   issues.
 * You can view the screen recording here, without correct answer to Captcha question,
   QSM doesn’t records any result:
 * We encourage you to try these solutions and let us know if you encounter any 
   issues or need further assistance. Our goal is to ensure that QSM remains a valuable
   tool for your site without compromising security or user experience.
 * Thank you for your understanding and continued support. We are always here to
   help and are committed to providing you with the best possible service.
 * Best regards,
   Avi
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Quiz and Survey Master (QSM) – Quiz Maker & Survey Maker] Supports separating the information input screen and the test taking screen](https://wordpress.org/support/topic/supports-separating-the-information-input-screen-and-the-test-taking-screen/)
 *  [Avi](https://wordpress.org/support/users/avi25/)
 * (@avi25)
 * [2 years, 1 month ago](https://wordpress.org/support/topic/supports-separating-the-information-input-screen-and-the-test-taking-screen/#post-17836292)
 * Hello [@vuongnv14](https://wordpress.org/support/users/vuongnv14/)
 * Thank you for writing to us. I see you are looking for assistance in creating
   a test that displays a contact form at the start of the test and then shows the
   test content with the timer to the participants.
 * It’s very easy to setup. Here are 2 easy ways you can achieve:
    1. Using Manual Paging Setup
    2. Using Auto-paging Setup
 * **Using Manual Paging **_(Just like how it’s shown in the video tutorial you 
   shared)_
 * You can manually assign questions to each pages as per your needs. You can add
   as much questions as you want in a page. Just click on the “Create New Page” 
   button at the bottom to create new page and add questions to the new page.
 * ![](https://i0.wp.com/snipboard.io/AQwskt.jpg?ssl=1)
 * Once done, just move to contact tab. Enable the contact fields as per your needs.
   To know more on how to setup contact form, you can follow this [documentation](https://quizandsurveymaster.com/docs/creating-quizzes-and-surveys/adding-contact-form-fields/).
 * This practice would let you see the contact form at the start of your test and
   the participants would be able to see the test content after contact field is
   filled.
 * <b>Note:</b> Manual Paging is ideal for displaying different numbers of questions
   on different pages of your test. For example, you want to display two questions
   on the first page, three on the second page, and five on the third page. Simply
   add the questions manually to each page and you will have your manual page ready.
 * **Using Auto-paging Setup**
 * Assume you have added all of your questions to a single page in the test. As 
   your test is in manual paging mode, you should see the contact form at the top
   and the rest of the questions below because the system is showing you a single
   page test view.
 * If you want to display a specific number of questions on each page automatically,
   simply click on the “options” tab in your test editor. Then navigate to “display”.
   Under Question preferences, you can set the number of questions you want to show
   in your test at each page.
 * ![](https://i0.wp.com/snipboard.io/dn9z5M.jpg?ssl=1)
 * Now you should be able to see an auto-paging setup in your test that shows all
   the page with thee number of questions that you have set.
 * I hope this helps. Let me know if you need more assistance, we’ll be happy to
   help you further.
 * Regards,
   Avi
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Gutena Forms – Contact Form, Survey Form, Feedback Form, Booking Form, and Custom Form Builder] Mail recevied but no success message displayed](https://wordpress.org/support/topic/mail-recevied-but-no-success-message-displayed/)
 *  [Avi](https://wordpress.org/support/users/avi25/)
 * (@avi25)
 * [2 years, 1 month ago](https://wordpress.org/support/topic/mail-recevied-but-no-success-message-displayed/#post-17834515)
 * Hi [@louislemasson](https://wordpress.org/support/users/louislemasson/)
 * Thanks for your reply. We understand your concern regarding the manual smtp configuration
   with Gutena. However, I’d like to inform you that the Gutena Forms submit button
   is used to only submit the form and does not have any relation to SMTP. It should
   be working individually.
 * Let me know if you have any other questions or still facing the issue, I’ll be
   happy to help you in getting it fixed.
 * Have a good day !
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Gutena Forms – Contact Form, Survey Form, Feedback Form, Booking Form, and Custom Form Builder] Mail recevied but no success message displayed](https://wordpress.org/support/topic/mail-recevied-but-no-success-message-displayed/)
 *  [Avi](https://wordpress.org/support/users/avi25/)
 * (@avi25)
 * [2 years, 1 month ago](https://wordpress.org/support/topic/mail-recevied-but-no-success-message-displayed/#post-17829450)
 * Hi [@louislemasson](https://wordpress.org/support/users/louislemasson/)
 * We checked this with our dev team. We found that the following error is generated
   by system
 *     ```wp-block-code
       SMTP ERROR: Failed to connect to server: (0)<br>SMTP Error: Could not connect to SMTP host.Failed to connect to server<br>
       ```
   
 * It means your WordPress website is unable to establish a connection with the 
   SMTP server.
 * This can happen due to incorrect SMTP settings, such as the wrong host, port,
   username, or password.
 * Please check this [article](https://wpmailsmtp.com/how-to-fix-could-not-connect-to-smtp-host-in-wordpress/#:~:text=An%20%E2%80%9CSMTP%20error%20could%20not,port%2C%20username%2C%20or%20password.)
   to know about the issues this may be occuring
 * As you shared: “SyntaxError: Unexpected non-whitespace character after JSON at
   position 4 (line 1 column 5)” this occurs due to unexpected SMTP ERROR thrown
   as a response by wordpress.
 * Once you fix the SMTP, your issues would be sorted. However, in case of any challenges,
   feel free to contact us.
 * Thanks,
   Avi
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Gutena Forms – Contact Form, Survey Form, Feedback Form, Booking Form, and Custom Form Builder] Mail recevied but no success message displayed](https://wordpress.org/support/topic/mail-recevied-but-no-success-message-displayed/)
 *  [Avi](https://wordpress.org/support/users/avi25/)
 * (@avi25)
 * [2 years, 1 month ago](https://wordpress.org/support/topic/mail-recevied-but-no-success-message-displayed/#post-17829148)
 * Hello [@louislemasson](https://wordpress.org/support/users/louislemasson/)
 * Sorry for the delay and thanks a lot for giving the detailed related to the issue
   you’re facing.
 * I’ve escalated this to my team, and in the meantime, can you help me with the
   error log so that we can dig deep into finding the root cause?
 * Thanks,
   Avi
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Gutena Forms – Contact Form, Survey Form, Feedback Form, Booking Form, and Custom Form Builder] Forms block in Gutenberg](https://wordpress.org/support/topic/forms-block-in-gutenberg/)
 *  [Avi](https://wordpress.org/support/users/avi25/)
 * (@avi25)
 * [2 years, 2 months ago](https://wordpress.org/support/topic/forms-block-in-gutenberg/#post-17822687)
 * Hi [@paaljoachim](https://wordpress.org/support/users/paaljoachim/)
 * Thanks for bringing this to our attention. It really looks interesting. I have
   forwarded this to my team and we will explore this in details.
 * For now, I’m marking this ticket as resolved. However, please be assured that
   we are always here to help you and take your suggestion in case you need anything.
 * Good Day!
   Avi
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Quiz and Survey Master (QSM) – Quiz Maker & Survey Maker] Database warning message after recent update](https://wordpress.org/support/topic/database-warning-message-after-recent-update/)
 *  [Avi](https://wordpress.org/support/users/avi25/)
 * (@avi25)
 * [2 years, 2 months ago](https://wordpress.org/support/topic/database-warning-message-after-recent-update/#post-17812884)
 * Hi [@mohammedkadhim](https://wordpress.org/support/users/mohammedkadhim/) [@charlyaes32](https://wordpress.org/support/users/charlyaes32/)
   [@a4jpcom](https://wordpress.org/support/users/a4jpcom/)
 * First of all, we are thankful for your support in highlighting your experience
   with our previous release.
 * We understand your situation and are excited to inform you that we have improved
   our notification management system. We’ve fixed the notification about database
   ALTER permissions to ensure it’s handled more effectively.
 * Additionally, we’ve made several improvements to enhance your experience with
   the QSM plugin, making it smoother and more reliable.
 * We apologize for any confusion caused by the alert notification in our previous
   release. Rest assured, it was not harmful and could be ignored if your quizzes
   were working fine.
 * We encourage you to update to the latest QSM version 9.0.3 to benefit from recent
   improvements. If you have any questions, we are always here to help.
 * Thank you for your continued support!
 * Avi
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Quiz and Survey Master (QSM) – Quiz Maker & Survey Maker] Even when contact email is set as required, quiz may be submitted without it.](https://wordpress.org/support/topic/even-when-contact-email-is-set-as-required-quiz-may-be-submitted-without-it/)
 *  [Avi](https://wordpress.org/support/users/avi25/)
 * (@avi25)
 * [2 years, 2 months ago](https://wordpress.org/support/topic/even-when-contact-email-is-set-as-required-quiz-may-be-submitted-without-it/page/2/#post-17809838)
 * Hello,
 * Thank you for sharing the details with us. We tried replicating an environment
   like your website using the same plugins and other configurations, but we couldn’t
   replicate the same issue that you’re facing. To dive deep into this, we need 
   your help so that we could get to the root of the problem. We request that you
   please create and share a screen recording similar to the one shared **[here](https://www.awesomescreenshot.com/video/28425364?key=1b9592c0237f454785accf96086dc486)**.
   This will help us understand the whole troubleshooting process and the errors
   if there are any.
 * We truly appreciate your patience and cooperation.
 * Warm regards,
   Avi
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Gutena Forms – Contact Form, Survey Form, Feedback Form, Booking Form, and Custom Form Builder] Email not recieved when filling in forms](https://wordpress.org/support/topic/email-not-recieved-when-filling-in-forms/)
 *  [Avi](https://wordpress.org/support/users/avi25/)
 * (@avi25)
 * [2 years, 2 months ago](https://wordpress.org/support/topic/email-not-recieved-when-filling-in-forms/#post-17803181)
 * Hi [@johama](https://wordpress.org/support/users/johama/) ,
 * We appreciate you bringing this to our attention. After looking into the issue
   promptly, we discovered that a 403 error occurred during the form submission,
   indicating a server-side problem. We suggest that you attempt to clear your cache
   or get in touch with your hosting provider to address this issue.”
 * ![](https://i0.wp.com/snipboard.io/aMiNL9.jpg?ssl=1)
 * 
   Here’s a [stack](https://stackoverflow.com/questions/44667163/wordpress-website-shows-403-error-when-accessing-wp-admin-ajax-php-page-from-fro)
   to help you resolving this issue.
 * Regards,
   Avi
    -  This reply was modified 2 years, 2 months ago by [Avi](https://wordpress.org/support/users/avi25/).
    -  This reply was modified 2 years, 2 months ago by [Avi](https://wordpress.org/support/users/avi25/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Gutena Forms – Contact Form, Survey Form, Feedback Form, Booking Form, and Custom Form Builder] Issue with Email Notifications in Gutenberg Forms](https://wordpress.org/support/topic/issue-with-email-notifications-in-gutenberg-forms/)
 *  [Avi](https://wordpress.org/support/users/avi25/)
 * (@avi25)
 * [2 years, 2 months ago](https://wordpress.org/support/topic/issue-with-email-notifications-in-gutenberg-forms/#post-17803162)
 * Hi [@stefacchio](https://wordpress.org/support/users/stefacchio/)
 * Thank you for your message. I’m sorry, currently we don’t have this feature, 
   but the good news is that this feature is in the pipeline for development. We’ll
   be releasing it soon in upcoming future.
 * Regards,
   Avi
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Gutena Testimonial Slider] Formatting gone](https://wordpress.org/support/topic/formatting-gone-3/)
 *  [Avi](https://wordpress.org/support/users/avi25/)
 * (@avi25)
 * [2 years, 2 months ago](https://wordpress.org/support/topic/formatting-gone-3/#post-17777517)
 * Hi [@sculley](https://wordpress.org/support/users/sculley/) 
   I’d like to follow
   up if your issues are sorted out or if you would need further help; Please be
   assured that we are always here to help you, and if you are still facing issues,
   we are just a message away.
 * Regards,
   Avi
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Quiz and Survey Master (QSM) – Quiz Maker & Survey Maker] Cookie block form and submit botton](https://wordpress.org/support/topic/cookie-block-form-and-submit-botton/)
 *  [Avi](https://wordpress.org/support/users/avi25/)
 * (@avi25)
 * [2 years, 2 months ago](https://wordpress.org/support/topic/cookie-block-form-and-submit-botton/#post-17766591)
 * Hi [@giuliagasp](https://wordpress.org/support/users/giuliagasp/)
 * Thank you for enabling the cookie banner. Our team thoroughly investigated the
   issue and suspects it may be due to a configuration problem on your site. Upon
   analyzing the issue, we found that something on your website is preventing the
   QSM plugin’s JavaScript from loading, causing the button to disappear from your
   form.
 * We tested a similar scenario using a cookie plugin like yours. After excluding
   the QSM script from the scan, we observed that everything worked properly. I 
   recommend trying to add the QSM script to the “ignore scripts from queue” section
   in your cookie plugin settings. Below is the script for your reference:
 *     ```wp-block-code
       wp-content/plugins/quiz-master-next
       ```
   
 * Let me know if this works. Also, if it does not work for you, I would appreciate
   it if you could share a screenshot of your cookie plugin’s settings page so that
   we can replicate your setup and recommend a solution.
 * Best regards,
   Avi

Viewing 15 replies - 1 through 15 (of 20 total)

1 [2](https://wordpress.org/support/users/avi25/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/avi25/replies/page/2/?output_format=md)