How to add form in template
-
Hi,
i′m using custom profile tabs with
add_filter('um_user_profile_tabs', 'custom_tab' ); function custom_tab($tabs) { //Add tab $tabs['test_tab'] = array( 'name' => 'Test Tab', 'icon' => 'um-faicon-users', 'count' => 0 ); return $tabs; } add_filter('um_profile_content_test_tab', 'custom_tab_content' ); function custom_tab_content($args) { echo 'Custom Tab Content'; }
Now I want insert different profile forms in different tabs. How to insert [ultimatemember form_id=xx] in this code?
- The topic ‘How to add form in template’ is closed to new replies.