Storing The Data Collected by Ninja Forms into Another (custom) Database [closed]

The data is stored in the wp_posts and wp_postmeta tables. You can see all the field values by doing this: SELECT website from (SELECT m1.meta_value as user_firstname, m2.meta_value as user_lastname, m3.meta_value as website FROM dev_posts join dev_postmeta m1 on m1.post_id = ID and m1.meta_key = ‘_field_1’ join dev_postmeta m2 on m2.post_id = ID and m2.meta_key … Read more

Grab values from the query string to fill in hidden fields in ninja forms [closed]

It looks like you can use the ninja_forms_display_init action to populate a field. To get the job ID from the URL you mentioned above you can use the $_GET array. Adapting the code from that documentation page, something like this should achieve what you’re looking for: function wpse_158000_populate_field($form_id) { global $ninja_forms_loading; $job_id_field = 3; //put … Read more