• Resolved ecomify

    (@ecomify)


    Hi There,

    Will it be possible to add a new custom tab in the account page? beside the profile page tabs.

    I need my users to have that custom tab with my custom content available to them.

    Please help

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi,

    Do you want to add to the account page or in the user profile page of a user? You can add in both but can you provide more details so that I can suggest you the solution?

    Regards,
    Patrik

    Hi,

    I want to add custom tabs in account page, in this tab I want to show user’s post list.

    any solution please?

    Best Regards,
    Irfan Mansoori

    Hi,

    Here is the code you can put in functions.php file of the currently active theme:

    add_filter('uwp_account_available_tabs', 'uwp_account_available_tabs_cb', 10, 1);
    function uwp_account_available_tabs_cb($tabs){
    
    	$tabs['new-tab'] = array(
    		'title' => __( 'My new tab', 'userswp' ),
    		'icon'  => 'fas fa-user',
    	);
    
        return $tabs;
    }
    
    add_filter('uwp_account_page_title', 'uwp_account_page_title_cb', 10, 2);
    function uwp_account_page_title_cb($title, $type){
    	if ( $type == 'new-tab' ) {
    		$title = __( 'My new tab title', 'uwp-messaging' );
    	}
    
    	return $title;
    }
    
    add_filter('uwp_account_form_display', 'uwp_account_form_display_cb', 10, 1);
    function uwp_account_form_display_cb($type){
    	if ( $type == 'new-tab' ) {
            echo 'Your custom content goes here...';
    	}
    }

    Let me know if it helps.

    Regards,
    Patrik

    Hey Patrik,

    That’s great I wanted same, Thank you so much!
    Much appreciated.

    Best Regards,
    Irfan Mansoori

    • This reply was modified 3 years, 7 months ago by irfanmansoori.

    You are welcome!

    Regards,
    Patrik

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Custom Account Tab’ is closed to new replies.