This action will be executed before the form shortcode will be rendered in front side. You can add custom content before the form as well.
Hook Name: arm_before_render_form
Hook Type: Action
Source: core/classes/class.arm_member_forms.php
Usage:
add_action( 'arm_before_render_form', 'your_function', 10, 2 );
function your_function($form, $atts) {
//Do Your Action
//$form Form Object.
//$atts Shortcode Attributes
echo "Form Starts From Here";
}
Parameters:
$form
Form Object
$atts
Shortcode Attributes