1. Is there a short code I can use to place the form on other pages/areas of the website? 2. Is it possible to redirect the user to a thank you page I created after they submit the form? 3. Is it possible to setup a confirmation email to be sent to the email the users enters upon submitting the form?
Hello, You can use that form in any place in your theme .To achieve this use below code in any file or template. Remember one this this is a php code and it does not work on post. PHP: <?php $widget_active = str_replace(' ', '', strtolower(inkthemes_get_option('widget_activate'))); ?> <?php if ($widget_active == 'both') { if (function_exists('ink_appoitment')) { echo '<div class="default_plugin">'; ink_appoitment(); echo '</div>'; } if (function_exists('appointway_leadform')) appointway_leadform(); }elseif($widget_active == 'appointment'){ if (function_exists('ink_appoitment')) { echo '<div class="default_plugin">'; ink_appoitment(); echo '</div>'; } }elseif($widget_active == 'leadcapture'){ if (function_exists('appointway_leadform')) appointway_leadform(); } ?> You cannot apply no 2 and 3 on your theme because it effects the form functionality. We will try to apply these features in future. Thanks & Regards Pramod