Viewing 5 replies - 1 through 5 (of 5 total)
  • Hello @artmas

    The contact form on the above page is working properly. You have below CSS added in your CSS file that hides the validation and success messages.

    .wpcf7-response-output {
        display: none;
    }
    .wpcf7 span.wpcf7-not-valid-tip, .wpcf7-validation-errors {
        display: none !important;
    }

    Remove above CSS.

    Thread Starter artmas

    (@artmas)

    Hm, but i never writed this code and cant find it

    Hello @artmas

    The theme “Unicon” you are using must have this CSS applied. You need to override them in your child theme style.css.

    .wpcf7-response-output {
        display: block !important;
    }
    .wpcf7 span.wpcf7-not-valid-tip, .wpcf7-validation-errors {
        display: block !important;
    }
    Thread Starter artmas

    (@artmas)

    But now blue block are visible all the time… this is not published website – https://prnt.sc/1rgti1z
    https://sanobiotec.jp/contact/

    Hello @artmas

    Change the first one to below:

    .wpcf7-form.invalid .wpcf7-response-output {
        display: block !important;
    }
Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Contact form doesnt work’ is closed to new replies.