@bluesharp It could be a theme issue. Please change to the Twenty Fourteen theme and check if you see that tab there.
@mercime Yes, it was an issue with the theme. I don’t know why they use css to hide it. I just remove that css and I have the change avatar button now. Thanks a lot.
@mercime, please, in which folder did u find the CSS.
help me out. my PHP skills aint that good.
thanks
@adeolu , Below is the html tag of View/Edit and Change Avatar Tab.
<ul>
<li class="current selected" id="public-personal-li"><a href="http://mysite../members/student/profile/" id="public">View</a></li>
<li id="edit-personal-li"><a href="http://mysite../members/student/profile/edit/" id="edit">Edit</a></li>
<li id="change-avatar-personal-li"><a href="http://mysite../members/student/profile/change-avatar/" id="change-avatar">Change Avatar</a></li>
</ul>
Using Chrome Inspect element, i saw in my theme CSS file: there’s a css like this:
#change-avatar-personal-li{
display:none;
}
I changed it to:
#change-avatar-personal-li{
display:block;
}
And it works.
I don’t know why they use css to hide it.
@bluesharp Thank you for confirming what the issue was. What theme was that? Other users may be coming in the BP forums with the same issue 🙂