Skip to content

Instantly share code, notes, and snippets.

@arshidkv12
Last active October 31, 2020 02:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arshidkv12/08729c91974676d19857e2c697564bd7 to your computer and use it in GitHub Desktop.
Save arshidkv12/08729c91974676d19857e2c697564bd7 to your computer and use it in GitHub Desktop.
Ninja Forms External Database (MySQL)- Develop CRM [Plugin]
ninja_forms_after_submission
@arshidkv12
Copy link
Author

ninja_forms_after_submission

function custom_ninja_forms_after_submission( $_data ){ 
   //custom code here
} 

//add the action 
add_action('ninja_forms_after_submission', 'custom_ninja_forms_after_submission', 10, 1);

Save submission data to the MySQL database.

https://wpdebuglog.com/ninja-forms-mysql/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment