BuddyDev

Search

Replies

  • Participant
    Level: Yogi
    Posts: 1117
    calu on in reply to: [Resolved] Styling of user groups in general #36568

    Hi Brajesh, thanks for the clarification, it sounds like a good solution, but not easy to achieve, I guess.

    Are there any documentation to find on the subject?

    Regards
    Carsten

  • Participant
    Level: Yogi
    Posts: 1117

    Hi Brajesh, thanks for bringing up the solution, appreciate it!

    Regards
    Carsten

  • Participant
    Level: Yogi
    Posts: 1117
    calu on in reply to: [Resolved] Styling of user groups in general #36565

    Hi Brajesh, thanks for the explanation, the term is new to me, what is table-less layout, and how do I exploit it in relation to xprofile fields which is based on tables?

    Regards
    Carsten

  • Participant
    Level: Yogi
    Posts: 1117

    Hi there, the issue was part of a later break down of the hole page, so the issue was not caused by BP. The site is up and running again, after recreation, so all is good 😉

    Regards

  • Participant
    Level: Yogi
    Posts: 1117
    calu on in reply to: [Resolved] Considerations about moving to Nouveau #36316

    Hi Brajesh, thanks for your feedback, I managed the switch to Nouveau without too much effort.

    Regards
    Carsten

  • Participant
    Level: Yogi
    Posts: 1117
    calu on in reply to: [Resolved] BP template tag breaks my site #35604

    Hi Ravi, it’s working now!

    Thanks for your effort to help me in making it work, you are most kind

    Regards
    Carsten

  • Participant
    Level: Yogi
    Posts: 1117
    calu on in reply to: [Resolved] BP template tag breaks my site #35597

    Hi Ravi, thanks for the code. It output the same result.

    What I need is to hide the two tags individually, so the statement should be an OR.

    Is elseif = || ?

  • Participant
    Level: Yogi
    Posts: 1117
    calu on in reply to: [Resolved] BP template tag breaks my site #35592

    Hi Ravi, thanks again, you have been most helpful. For some reason it has no effect in this function, where this element should be hided on the /members/profilename/settings/ but I must look for a solution elsewhere.

    add_filter( 'generate_hook_element_display', function( $display, $element_id ) {
        if ( 45256 === $element_id && bp_is_current_component( "bp-messages" ) || bp_is_settings_component() ) {
            $display = false;
        }
    
        return $display;
    }, 10, 2 );

    Regards
    Carsten

    • This reply was modified 4 years, 6 months ago by calu.
    • This reply was modified 4 years, 6 months ago by calu.
  • Participant
    Level: Yogi
    Posts: 1117
    calu on in reply to: [Resolved] BP template tag breaks my site #35584

    Hi again Ravi, can you inform me if bp_is_settings_component()is deprecated as well?

  • Participant
    Level: Yogi
    Posts: 1117
    calu on in reply to: [Resolved] BP template tag breaks my site #35580

    Hi Ravi, thanks for the clarification, the bp_is_user_profile_edit is working, while the bp_is_profile_edit is not. strange that bp_is_user_profile_edit apparently is not listed in the Template Tag Reference.

    Regards
    Carsten