• Resolved wexzone

    (@wexzone)


    When a user logs in, the login form is replaced with their profile image, their username, and then a list of links below, including “Your account” and “Logout”

    Is there any way to edit this content? Can we add more links to that list or change how they display?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Contributor Champ Camba

    (@champsupertramp)

    Hi @wexzone

    To add more links to the list, you can try this code snippet:

    function um_020221_logout_user_links( $args ) {
    	
    	<li>
    		<a href="#">
    			<?php _e( 'My new Link', 'ultimate-member' ); ?>
    		</a>
    	</li>
    	
    	<?php
    }
    add_action( 'um_logout_user_links', 'um_020221_logout_user_links', 100 );

    Regards,

    Thread Starter wexzone

    (@wexzone)

    Is there a way to change the text of the current links?

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Logged in User content’ is closed to new replies.