Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter bcgsam

    (@bcgsam)

    Yes, that setting is checked. I just submitted the form to test it again, and the “Reply to” email in that test is still the admin email that is saved in the general WP settings. Shouldn’t it be the customer email that was submitted with the form?

    I have the same thing happen on my end as well. I also have to refresh to get out of it. Glad it not just me! I wonder why that is?

    Thread Starter bcgsam

    (@bcgsam)

    I found a workaround with CSS! For anyone trying to do the same thing, this worked for me.

    I added this under the settings and custom CSS section:

    li:hover {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
    -webkit-animation: none !important;
    }

    h2 {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
    -webkit-animation: none !important;
    }

    h3 {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
    -webkit-animation: none !important;
    }

    Might be a little overkill, but it got the job done. Feel free to experiment for whatever your own needs are.

Viewing 3 replies - 1 through 3 (of 3 total)