Skip to:
Content
Pages
Categories
Search
Top
Bottom

[Resolved] profile tab


  • DamnDramaQueen
    Participant

    @damndramaqueen

    Hi Buddypress,

    I want to locate the code where I can insert image/text below (outside) the profile tab. If I can insert to show below ALL buddypress tabs is good as well.

    Can you tell me which file and directory I need to do this from?

    outside profile tab

    Please advise help, thanks

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

  • danbp
    Moderator

    @danbp

    Hi,

    template action hook bp_after_profile_field_content is located in bp-templates/bp-legacy/buddypress/members/single/profile/profile-loop.php:60

    Add a function to bp-custom.php. Eg.

    function queensplace() {
    // your sutff here
    	echo 'outside the container, below the profile tab';
    }
    add_action( 'bp_after_profile_field_content', 'queensplace' );

    DamnDramaQueen
    Participant

    @damndramaqueen

    Hi danbp,

    Yahoo, it works great! That’s what I needed for the text to located 🙂

    Thanks so much for another big time help!

    You have a wonderful day! 🙂

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Resolved] profile tab’ is closed to new replies.
Skip to toolbar