This action will allow to add custom content before the content of edit profile shortcode will take place.
Hook Name: arm_before_render_edit_profile_form
Hook Type: Action
Source: core/classes/class.arm_member_forms.php
Usage:
add_action( 'arm_before_render_edit_profile_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