UPDATE
HI, I somehow got it working.. Following one of your posts in your forum thread, I got it. I have added one more tab in the profile menu ‘My Custom Menu Tab‘ using the following function
add_filter('um_profile_tabs', 'add_custom_profile_tab', 1000 );
function add_custom_profile_tab( $tabs ) {
$tabs['mycustomtab'] = array(
'name' => 'My Custom Menu Tab',
'icon' => 'um-faicon-comments',
);
return $tabs;
}
But I am stuck with an issues. I have added one action so that I can output one short-code function inside the tab
add_action('um_profile_tabs', 'show_custom_tab');
function show_custom_tab ($args ) {
echo do_shortcode('[one_shortcode_here]');
}
Now when I add the above action, the shortcode is visible and so also the tab but it knocks out the default About tab. Even inside the settings area (settings>Appearance?profile menu) I do not see the About tab anywhere.
Can you please guide me where I am getting it wrong or how to execute this. If at all, the shorcode cannot be executed, the a plain anchor-link to another page will do.
PS: I added those functions in the um-short-functions.php
file