lead capture form

Discussion in 'Blackriders WordPress Theme' started by volt, Aug 21, 2013.

Thread Status:
Not open for further replies.
  1. volt

    volt New Member

    Joined:
    Jul 9, 2013
    Messages:
    18
    Likes Received:
    0
    Is it possible to remove the lead capture form that comes with the theme and replace it with a contact form 7?
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Go to front-page.php present in your theme directory and replace current code

    Code:
        <div class="signupform-header">
                 
          <?php if (inkthemes_get_option('inkthemes_leadhead') != '') { ?>
            <h4 class="heading"><?php echo stripslashes(inkthemes_get_option('inkthemes_leadhead')); ?></h4>
            <?php } else { ?>
            <h4 class="heading">Colorway Lite is also available for Download at WordPress.org</h4>
                  <?php } ?>
                  <span class="form-tip"></span>
                  </div>
                  <div id="content_1" class="signupform signinformbox_wrapper">
                <?php infoway_front(); ?>
                  </div>    
    With code given below

    Code:
    <?php echo do_shortcode('[B]Enter your Contact Form 7 shortcode[/B]'); ?>
    Sending image for reference

    2013-08-23_1156.png


    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.
     
  3. steammaster

    steammaster New Member

    Joined:
    Mar 26, 2012
    Messages:
    12
    Likes Received:
    0
    I have removed the lead capture form with

    .caption{
    display:none;
    }

    how can I add Mobile Simulator Pro [mobilesimulatorpro sim="single-simulator"]
    so it shows up to replace the lead capture form?
    www.mobilizingvail.com
     
  4. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160

    Please remove code that you have posted above and follow process as shown in the post #2.
    and just replace contact form 7 shortcode code with your simulator shortcode.

    For example:

    <?php echo do_shortcode('[mobilesimulatorpro sim="single-simulator"]'); ?>
     
  5. dseiter

    dseiter Guest

    Joined:
    Feb 28, 2013
    Messages:
    20
    Likes Received:
    0
    This is exactly what I want to do, can this also be replace with a widget??
    Meaning... I have a custom widget (idxpress) and would like that to be located in the lead capture area.
     
  6. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207

    Unfortunately there isn't a way to do that with our theme unless you custom code something up. Sorry.
     
  7. dseiter

    dseiter Guest

    Joined:
    Feb 28, 2013
    Messages:
    20
    Likes Received:
    0
    thanks for the quick reply.
    have a good one.
     
Thread Status:
Not open for further replies.

Share This Page