A few questions in regards to the lead capture form

Discussion in 'Appointway WordPress Theme' started by erjdavis, Oct 7, 2014.

  1. erjdavis

    erjdavis Member

    Joined:
    Dec 17, 2012
    Messages:
    47
    Likes Received:
    1
    Location:
    Philadelphia, PA
    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?
     
  2. Yogesh

    Yogesh Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,052
    Likes Received:
    41
    Hello,

    You have to customise your theme for all three issue.

    Thanks & Regards
    Yogesh Bhade
     
  3. erjdavis

    erjdavis Member

    Joined:
    Dec 17, 2012
    Messages:
    47
    Likes Received:
    1
    Location:
    Philadelphia, PA
    Lol... thanks for that great response.

    Can you what file I need to modify for number 2 & 3?
     
  4. Pramod

    Pramod Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,847
    Likes Received:
    63
    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
     

Share This Page