-
Hey All, I recently switched from October CMS to Winter CMS and have been having major issues with the Winter CMS version of Magic Forms. I have the form set up, with rules, and messages, but no matter what I do, I can NOT for the life of me get an error or success message to trigger. For instance, I have Required rules and error messages set up. Whenever I submit a form without one of those fields filled out, the corresponding error message isn't showing. I also can't get the Success message to show either when submitting the form. Any ideas? I've tried custom messages with JavaScript, I've relied on Magic Forms error messages, and have even straight up removed all Custom JavaScript to try and get this to work and nothing is working. Thanks for any help or advice! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
@LinkBrown can you provide a link to the plugin you're using and a screenshot of the page with the dev console & network tabs open? |
Beta Was this translation helpful? Give feedback.
-
SOLVED! If you run into this issue exact issue, here is what was causing the messages to not show for me: The issue I was having was related to this specific line: <div id="contactForm_forms_flash"></div> <div class="form-group"> (replace contactForm with your form alias). This specific line was missing and thus causing the errors AND success messages to not show. Adding this into my form under the |
Beta Was this translation helpful? Give feedback.
SOLVED!
If you run into this issue exact issue, here is what was causing the messages to not show for me:
The issue I was having was related to this specific line:
(replace contactForm with your form alias). This specific line was missing and thus causing the errors AND success messages to not show.
Adding this into my form under the
{{ form_token }}
line caused the messages to finally start showing up. This issues PLAGUED me for days until just now.