Is there any way I can replace the lead form on the front page with a different lead form? Specifically I want to replace it with vCita's contact form. thank you
Hello, Go to front-page.php present in your theme directory and replace current code Code: <?php infoway_front(); ?> With code given below Code: <?php echo do_shortcode('Enter your vCita's contact form shortcode'); ?> Sending image for reference Now, Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: .caption{ -webkit-box-shadow:none; -moz-box-shadow:none; box-shadow:none; } This will solve your issue.