Contact Form 7 multi-column form error

I think this is mostly a CSS problem. The container for your submit button is inside a paragraph tag which combined with your floating columns will break the way it looks. Your website is using bootstrap so I would suggest using that instead. Here is a guide: https://www.toptal.com/front-end/what-is-bootstrap-a-short-tutorial-on-the-what-why-and-how (I am not affiliated with this website) … Read more

CF7 Custom Recipient – Changing the text

You can put this below code into theme’s functions.php file and check it. see this screenshot function add_wpcf7_custom_recipient_meta_box_changed() { add_meta_box( ‘wpcf7_custom_recipient_meta_box’, ‘Enter mail for inquiries’, //just here to change text you want ‘show_wpcf7_custom_recipient_meta_box’, get_post_types(array(‘public’ => true), ‘names’), ‘side’, ‘high’ ); } add_action( ‘add_meta_boxes’, ‘add_wpcf7_custom_recipient_meta_box_changed’ );

How to direct contact form submission to a certain page

If you’re okay with paying for a plugin, here’s one that does exactly what you need: https://querysol.com/product/contact-form-7-redirection/ Otherwise you need to write some code yourself, the documentation is here: https://contactform7.com/redirecting-to-another-url-after-submissions/ The code itself needs to be extended a bit, e.g. <script> document.addEventListener( ‘wpcf7mailsent’, function( event ) { if (jQuery(‘#yourdropdown’).val() == ‘0’) { location = ‘http://example1.com/’; … Read more