• Resolved DLee Morris

    (@dleemorris)


    I would like to have a ‘View Profile’ text and url on the member directory page user card. Not all will know to click on the photo to view the profile, so I would like to have a link on member directory cards that says. ‘View Profile’ that will take you to the individual profile of that user. Same as if clicking the avatar profile photo does.

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

    (@champsupertramp)

    Hi @dleemorris

    Please try adding this code snippet to add the “View Profile” link the Member Directory cards:

    add_action('um_members_just_after_name_tmpl','um_122021_display_view_profile',100 );
    function um_122021_display_view_profile( $args ){
       ?>
       <div class="um-members-edit-btn">
    		<a href="{{user.profile_url}}" >
    		<?php _e( 'View profile','ultimate-member' ) ?>
    		</a>
    	</div>
        <?php
    }

    You can add the above code to your theme/child-theme’s functions.php file or use the Code Snippets plugin to run the code.

    Regards,

    • This reply was modified 3 years, 2 months ago by Champ Camba.
    Plugin Contributor Champ Camba

    (@champsupertramp)

    Hi @dleemorris

    This thread has been inactive for a while so we’re going to go ahead and mark it Resolved….Please feel free to re-open this thread by changing the Topic Status to ‘Not Resolved’ if any other questions come up and we’d be happy to help. ??

    Regards,

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘View Profile Link on Member Directory Card’ is closed to new replies.