Reputation: 41
There is a conflict with WooCommerce and the CSS of the Contact Form 7 in my wordpress theme (Grotte). The Send button in the Contact Form 7 is not getting displayed and I somehow have not been able to get a resolution for this. It shows if I deactivate WooCommerce though. Any suggestions?
You can see that the SEND button is not getting displayed here: https://chinaproductsfactory.com/contact-us/
Upvotes: 0
Views: 2619
Reputation: 3178
This is very easy to figure out using developer tools in any modern browser. You have the following code in one of the CSS-files:
#respond input#submit, .wpcf7-submit {
display: none !important;
}
Removing this, or at least removing the .wpcf7-submit
part, will make it display.
Upvotes: 1