Displaying Data in the users profile tab? [Over 3 hours spent trying]
-
Hey Great Plugin! Please note I have tried for over 3 hours trying to do this and don’t want to waste anyone’s time so sorry in advance.
So i’ve got my profile page setup which shows the users posts/comments in tabs beside each other i’ve added a achievement tab and would like to display the achievements users have earned.
Here’s the code, If you can see where i’m failing please help :p
<ul id="author-tabs" class="nav nav-tabs clearfix"> <li class="active"><a href="#ht-author-posts" data-toggle="tab"><?php _e( "Posts", "framework" ); ?></a></li> <li><a href="#ht-author-comments" data-toggle="tab"><?php _e( "Comments", "framework" ); ?></a></li> <li class="active"><a href="[get_user_ach_link]" data-toggle="tab"><?php _e( "Achievements", "framework" ); ?></a></li> </ul>
I’ve also inserted this to my functions
function get_user_achievement_page ($user_id) { $user_profile_url = dpa_get_user_avatar_link( array( 'type' => 'url', 'user_id' => get_current_user_id(), ) ); return $user_profile_url; }
The Achievement tab shows fine and correctly but doesn’t function.
website url is https://www.authenticspot.com
you can view the profile page here with the problem in question
then you can view the achievements i’d like to add into the tab here
- The topic ‘Displaying Data in the users profile tab? [Over 3 hours spent trying]’ is closed to new replies.