PLEASE NOTE: These forums are no longer utilized and are provided as an archive for informational purposes only. All support issues will be handled via email using our support ticket system. For more detailed information on this change, please see this blog post.

Multiple Websites, Multiple Cloned Forms, One Database - Point right direction

  1. I getting ready to launch about 50 websites. Each website is going to be a niche site for real estate. It might be a particular cit, or it might be a subdivision, etc. I'd like all of the leads from those sites to funnel into one database. Is that possible? This is honestly going to be above my head I think, but I want to be able to intelligently point the programmer into the right direction.

    Posted 14 years ago on Monday November 23, 2009 | Permalink
  2. Hey Scott, right now there isn't a way to do this as the 50 sites each use their own database.

    However, what you could do is setup one site to be specifically for the forms. Then create a theme template file that doesn't consist of the site design, just the page content. Use this template for some form pages.

    Then you could iframe in these pages into the other sites.

    It isn't as ideal as having them natively on the other sites, but this would allow you to display the form on the other sites while having the form data all feed into one.

    You could even pass information to the iframe url and pre-populate form fields with that information (such as a listing id, etc.).

    This would point a developer in the right direction...

    Posted 14 years ago on Monday November 23, 2009 | Permalink
  3. Scott ...

    I don't know if Gravity Forms plays nice with Word Press MU ... but ...

    If you built the 50 sites using WordPress Multi User ... then all of the individual sites are actually in one single database (all handled seamlessly in the background). A programmer would then be able to extract all of that information from the one database ...

    Greg

    Posted 14 years ago on Wednesday April 14, 2010 | Permalink
  4. EDIT: Realized I've answered a 4 month old post :)... oh well.. hope someone finds this useful.

    If you'll use Wordpress MU you can then make a page template and inside it change the blog from the current site (a small city site for example) to the main site (that has GravityForms installed). This way you can call the the contact form directly from there.

    `
    switch_to_blog(1);
    gravity_form(2, false, false);
    restore_current_blog();
    `

    I haven't tested this with GravityForms, but with any other wordpress function it works like a treat.

    Posted 14 years ago on Wednesday April 14, 2010 | Permalink
  5. "oh well.. hope someone finds this useful. "

    I did! Thanks! I'd only add the doing it thru a wp page template is a pain the ass, maybe better to run the php directly on the page or thru a shortcode

    Posted 13 years ago on Wednesday June 30, 2010 | Permalink