extra tab in the profile overview of ultimate member with link to another page.
-
I want to make an extra tab in the profile overview of ultimate member. I found this code and it creates indeed a new tab. Now I want that when someone presses the tab, they are referred to a page on the website ( Example: https://www.mysite.com/mypage ). Does anyone now how you can do it?
Here is the code that i found:
/* First we need to extend main profile tabs */
add_filter(‘um_profile_tabs’, ‘add_custom_profile_tab’, 1000 );
function add_custom_profile_tab( $tabs ) {$tabs[‘mycustomtab’] = array(
‘name’ => ‘My custom tab’,
‘icon’ => ‘um-faicon-comments’,
);return $tabs;
}
/* Then we just have to add content to that tab using this action */
add_action(‘um_profile_content_mycustomtab_default’, ‘um_profile_content_mycustomtab_default’);
function um_profile_content_mycustomtab_default( $args ) {
echo ‘Hello world!’;
}
`
Thanl
- The topic ‘extra tab in the profile overview of ultimate member with link to another page.’ is closed to new replies.