• I have been using Easy Contact Forms for a while and like it – very customizable BUT I just discovered that the pages where my forms are displayed doesn’t show a submit button. Everything else is there but not the Submit button. I don’t know how long it has been this way because I just discovered it. Are there any known issues that would prevent the Submit button from displaying?

    http://wordpress.org/plugins/easy-contact-forms/

Viewing 5 replies - 1 through 5 (of 5 total)
  • Make sure that in your template you include
    ‘ <?php wp_head();?> ‘ before the </head> and
    ‘ <?php wp_footer()?> ‘ just before the </body> tag. These plugins are often pre-programmed to add calls in the header and footer and if you’re not calling them they won’t load.

    Hi!
    I have the exact same issue. The submit button does not show up when I use the form in a sidebar textwidget. (It shows up alright though if I use it on a page.)

    I have checked and my template calls on
    ‘<?php wp_head();?> ‘ before the </head> and
    ‘ <?php wp_footer()?> ‘ just before the </body> tag
    as described by kimbolee18.

    WP 3.9.1 with version 1.4.9 of Easy Contact Forms.

    Ideas anyone?

    /Cecilia

    Hi, I have the same problem, any ideas?

    dfgphp

    Hola , lo solucione cambiando get_foother() por wp_footer()

    <?php
    /*
    Template Name: page contact
    */
    ?>
    
    <?php get_header(); ?>
    
        <div class='page1'>
    
            <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
        <div class='post1' id='post-<?php the_ID(); ?>'>
    
            <h2><?php the_title();  ?></h2>
    
                    <div class='contact'><?php the_content('<p class=”serif”>Read the rest of this page &raquo;</p>'); ?>
    
                    </div> 
    
                    <div class='contactf'><?php the_post_thumbnail('medium'); ?>
    
                    </div>
    
            <?php endwhile; endif; ?>
    
        </div>
        </div>
    
     <?php wp_footer(); ?>

    May be you choose recaptcha. If you did you have to set it with google ap key.
    If you don’t set the google ap key (private and public) the button remains hidden

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Don't see Submit button’ is closed to new replies.