Hi Brajesh, I need some help finding the right action hook, and have tried all potential hooks.
I want to show profile edit tabs, after own profile fields, but exclude other members, as it makes no sense having edit tabs on other members profiles.
Hooks like
bp_after_profile_content
andbp_after_profile_field_content
does not exclude other members, but displays on all profiles.You could say that I am looking for is a hook doing the opposite of
bp_after_member_body
which exclude own profile.Can you help me with a hook showing content after profile content, on own profile only?
Regards
CarstenHi Carsten,
Thank you for the question.You can use any of the above hook. All you need to do is wrap the link in a condition like this
if ( bp_is_my_profile() ) { // echo edit links here }
Regards
Brajesh
The topic ‘ [Resolved] The right action hook for own profile’ is closed to new replies.