• cbvmercado

    (@cbvmercado)


    Need help to make SMCF work:

    Here’s what I did:

    1. I placed the following in the SMCF plugin settings in WP admin panel like so:

    ——————-
    Contact Link URL: https://www.takeiteasyonline.com/contact/
    Contact Link Title: contact
    ——————-

    2. I created a Static PAGE in WP named Contact that contains the form and gave it a friendly permalink name “contact”

    3. Now I created a widget with an

    <a HREF="https://www.takeiteasyonline.com/contact" class="smcf-link">
    <img src="images.jpg">
    </a>

    PROBLEM: The contact form is not appearing. What happen is the link just redirects me to the Contact page not the MODAL form.

    I wonder what am I missing here?

    Thank you.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Eric

    (@emartin24)

    Since the SMCF JS file is not being loaded, I can only assume that you do not have wp_footer() in your theme. It’s usually in the footer.php file.

    Thread Starter cbvmercado

    (@cbvmercado)

    Hi Eric! thanks for the quick reply.

    Where can I find the procedure to load SMCF JS in the footer?

    Rose

    (@thorned-rose)

    You shouldn’t need to manually load it into the footer as the plugin will do this automatically.

    Open your theme’s footer.php file and scroll to the bottom.

    You should either see wp_footer(); or <?php wp_footer(); ?> just before the </body> tag.

    e.g.

    </div> <!-- footerwrapper end -->
    <?php wp_footer(); ?>
    </body>
    </html>

    If you can’t see it there, you will need to add it in ??

    Thread Starter cbvmercado

    (@cbvmercado)

    @eric and Thorned Rose THANKS for your help.

    The pop-up is now showing. I just added the wp_footer in my functions like the both of you suggested.

    Excellent. Problem is solved.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Help with SimpleModal Contact Form (SMCF)’ is closed to new replies.