Hello, I am interested in creating a single master form in my primary site that can be loaded into other sites.
I would like to be able to make an edit on my master form and have it propagate throughout the sub sites.
I succeeded to a degree by using code like the following in a sub site template:
global $blog_id;
$current_blog_id = $blog_id;
switch_to_blog(1);
gravity_form(1, $display_title=true, $display_description=true, $display_inactive=false, $field_values=null, $ajax=false, 0);
switch_to_blog($current_blog_id);
The form displayed just fine, but did not function. Pressing submit redirected to a page that didn't exist and showed as just a colon (':') in the url address bar.
I am currently aware that I can use the export and import functionality but that seems much more tedious than just modifying a master form and having the changes reflected throughout all sub sites.
Hope that makes sense.
Is there a way to do what I'm aiming to do?
Thank you.