Adding help tab for the social media import.
return $addOnTabs;
}
);
+ add_filter( 'glm-member-db-add-help-for-import',
+ function( $helpTabs ){
+ $helpTabs[] = array(
+ 'id' => 'glm-member-db-import-help-social',
+ 'title' => __( 'Social Media' ),
+ 'content' => '<p>' . __( 'Follow the Sample File provided in
+ creating the file for the member social media import. Each
+ record must have the "member_id" field' ) . '</p>'
+ );
+ return $helpTabs;
+ }
+ );
}