Gravity Flow Parent-Child Forms Extension 1.5

Download Gravity Flow Parent-Child Forms Extension 1.5 from nulled fire. Gravity Flow Parent-Child Forms Extension for Gravity Flow.
- Added the Form ID to the entry meta labels.
- Added the gravityflowparentchild_child_entry_url filter to allow the child entry URL to be modified.
- Added the gravityflowparentchild_form_settings capability
- Added the gravityflowparentchild_add_child_entry_link filter.
Example:
add_filter( 'gravityflowparentchild_add_child_entry_link', 'sh_filter_gravityflowparentchild_add_child_entry_link', 10, 5 );
function sh_filter_gravityflowparentchild_new_entry_link( $form_link, $form_url, $parent_form_id, $child_form_id, $parent_entry_id ) {
$form_url = site_url() . '/new-child-entry-form/?workflow_parent_entry_id=' . $parent_entry_id;
$form_url = esc_url( $form_url );
$form_link = sprintf( '<a href="%s">New Evaluation</a>', $form_url );
return $form_link;
}
- Added the gravityflowparentchild_view_all capability to control who can see the child entries.
- Fixed an issue with the capabilities required to view the parent and child entry metaboxes.
- Updated Members 2.0 integration to use human readable labels for the capabilities. Requires Gravity Flow 1.8.1 or greater.