I have figured out how to remove the appointment booking widget on the homepage and replace it with the lead capture form, but I can only do that on the homepage and in the sidebar area of other pages by dragging the lead capture widget into the sidebar from within the "widgets" area. I want to be able to place that lead capture form in the center of a page, like my contact us page. I don't want the form in the sidebar area of my contact us page, I want it to be in the center of the contact us page and be the focal point. Where can I get the HTML code or the shortcode for the lead capture form I created and place it in the centre of my contact us page? Thanks - Eric
Hello, Go to template-contact.php present in your theme directory and add the code given below Code: echo "<div class='apt-lead'>"; if (function_exists('appointway_leadform')) appointway_leadform(); echo "</div>"; check image for reference now, Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: div.apt-lead { margin-left: 50%; } Thanks & Regards Gourav Shrivastava