nf_success_msg
The Ninja Forms nf success msg hook.
Description
Parameters (2)
- 0. $ninja_forms (unknown) =>
Ninja_Forms()->notification( $id )->get_setting( 'success_msg' )
- The ninja forms.
- 1. $id (unknown)
- The id.
Usage
- To run the hook, copy the example below.
- $ninja_forms = apply_filters( 'nf_success_msg', $ninja_forms, $id );
- if ( !empty( $ninja_forms ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the nf_success_msg callback
- function filter_nf_success_msg( $ninja_forms, $id ) {
- // make filter magic happen here...
- return $ninja_forms;
- };
- // add the filter
- add_filter( 'nf_success_msg', 'filter_nf_success_msg', 10, 2 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'nf_success_msg', 'filter_nf_success_msg', 10, 2 );
Defined (1)
The filter is defined in the following location(s).
- /deprecated/classes/notification-success-message.php
- $success_msg = apply_filters( 'nf_success_msg', Ninja_Forms()->notification( $id )->get_setting( 'success_msg' ), $id );