• Installed ninja forms for word press and id like to embed that part into my website but didn’t see any tutorials on how to do that. Everything I’ve found was on embedding the blog part of word press into my website.

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter badincite

    (@badincite)

    Can anyone point me in the right direction?

    What is your website? Are you asking how to embed the Ninja Forms into a page of your WordPress website, or do you have another non-wordpress website that you want to embed the forms into?

    If you have a WordPress website and just want to embed the ninja forms into a page of your wordpress site, you can use a shortcode like [ninja_forms_display_form id=1] where 1 is the ID number of the form you want to display, and then the form will appear on that page of your wordpress site.

    See https://www.ads-software.com/plugins/ninja-forms/installation/

    If you have a non-wordpress site and you want to embed the form you created into that site, you might want to use iframes.

    Thread Starter badincite

    (@badincite)

    Okay I have a wordpress installed and the ninja forms plugin installed for wordpress. I have an existing non wordpress website that I am looking to integrate or embed wordpress with so I dont have to mess with theming wordpress.

    https://codex.www.ads-software.com/Integrating_WordPress_with_Your_Website

    Here’s my website in development I got some of the blog portion embeded hhttps://chesapeakecontrols.com/CCI2014/template.php
    The wordpress installation https://chesapeakecontrols.com/wp/

    Thread Starter badincite

    (@badincite)

    Okay made some headway apparently what I need is the codex I have been able to call out the page I want but its not displaying the content yet,

    https://chesapeakecontrols.com/CCI2014/template2.php

    <?php
    // Include WordPress
    define('WP_USE_THEMES', false);
    require('../wp/wp-blog-header.php');
    ?>
    
    <?php
    $page = get_page_by_title( 'Embed Test' );
    wp_list_pages( 'exclude=' . $page->ID );
    ?>
    Thread Starter badincite

    (@badincite)

    I found my issue I believe I needed to get the widgets on the actual page by using a plugin.

    I’m a wordpress newb !

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Embedding wordpress ninja forms into website’ is closed to new replies.