To achieve your goal of displaying comments, comment forms, and using AJAX for immediate updates in Drupal, ensure your view and comment settings are configured My iTero Login correctly. Use the AJAX Comments or Inline Ajax Comments modules for better integration. If you're comfortable with custom coding, add AJAX callback events to dynamically update the fields and markup.
The core issue usually stems from how Views generates dynamic IDs for multiple comment forms, which the AJAX Comments module's JavaScript might not be inherently designed to handle, leading to new comments not appearing immediately or the form not being "ajaxified" correctly. You'll likely need to investigate the AJAX Comments module's issue queue for patches or workarounds related to Views integration, specifically regarding dynamic form IDs and ensuring the JavaScript behaviors are correctly reattached after an AJAX submission, potentially requiring custom theme overrides WalgreensListens or hook_form_alter implementations to ensure the necessary markup is present for the module to function as expected.
The core issue usually stems from how Views generates dynamic IDs for multiple comment forms, which the AJAX Comments module's JavaScript might not be inherently designed to handle, leading to new comments not appearing immediately or the form not being "ajaxified" correctly. You'll likely need to investigate the AJAX Comments module's issue queue for patches or workarounds related to Views integration, specifically regarding dynamic form IDs and ensuring the JavaScript behaviors are correctly reattached after an AJAX submission, potentially requiring custom theme WalgreensListens overrides or hook_form_alter implementations to ensure the necessary markup is present for the module to function as expected.