Render form for specific ids
-
add_filter('forminator_render_form_markup', function( $html, $form_fields, $form_type, $form_settings, $form_design, $render_id ) { if ( is_user_logged_in() ) { $user_id = get_current_user_id(); $message = __( 'Already Submitted' ); //code if ( contition = true ) { return $message; } } return $html; }, 10, 6 );
How to render the form for specific form ids
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Render form for specific ids’ is closed to new replies.