raymird
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Border from class=”wpcf7-response-output” always showsHave you tried to clear your website’s cache after the plugin update?
Clearing cache worked for us when we had this issue.
You may refer to this: https://wordpress.org/support/topic/contact-form-7-5-2-validation-message-always-visible/
Forum: Plugins
In reply to: [Contact Form 7] Contact Form 7 5.2 validation message always visibleHi @umbertofederico, glad to hear it worked for you too.
Regarding the border-box colors, have you checked the classes for the success message and the validation error? It seems the variables have changed since the last update. You may test your forms to see the class variables and cross-reference to your declared styles.
.wpcf7 form.sent .wpcf7-response-output {
border-color: #46b450; /* Green */
}.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
border-color: #dc3232; /* Red */
}.wpcf7 form.spam .wpcf7-response-output {
border-color: #f56e28; /* Orange */
}.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
border-color: #ffb900; /* Yellow */
}Forum: Plugins
In reply to: [Contact Form 7] Contact Form 7 5.2 validation message always visibleIs the message alert box still visible when you are logged-in on WordPress? I had this issue on our website, an alert box shows when I’m logged out. I found that this style is not being loaded when logged out.
.wpcf7 form.init .wpcf7-response-output {
display: none;
}Read online that if you are using caching plugins, some CSS may not be loaded properly. I have cleared the cache and this has solved the issue.
I’m not sure if this will also work on your end as we are using a caching plugin that created the issue.
Hope this helps.