Last active
April 19, 2021 20:35
-
-
Save ultimatemember/8cdaf61e7bd9de35512c to your computer and use it in GitHub Desktop.
Extending Ultimate Member Profile Menu using Hooks
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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!'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I just tried to add a shortcode in a custom tab with the following:
`add_filter('um_account_page_default_tabs_hook', 'add_kd_redeem_tab', 100 );
function add_kd_redeem_tab( $tabs ) {
$tabs[800]['redeem_kd_tab']['icon'] = 'um-icon-ios-world';
$tabs[800]['redeem_kd_tab']['title'] = 'Title';
$tabs[800]['redeem_kd_tab']['custom'] = true;
return $tabs;
}
add_action('um_account_tab__redeem_kd_tab', 'um_account_tab__redeem_kd_tab');
function um_account_tab__redeem_kd_tab( $info ) {
global $ultimatemember;
extract( $info );
}
add_filter('um_account_content_hook_redeem_kd_tab', 'um_account_content_hook_redeem_kd_tab');
function um_account_content_hook_redeem_kd_tab( $output ){
ob_start();
?>
}`
The shortcode that I'm using is here:
https://codex.mycred.me/shortcodes/mycred_load_coupon/
What am I missing?
Thanks in advance!