Shape the future of Social networking with WordPress: Join Project Midnight Sun! The next generation platform for community building with WordPress!

BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 25365
    Brajesh Singh on in reply to: [Resolved] Add Group name on the post group #34809

    Hi Alejandro,
    Thank you for the reply.

    You may use this snippet inside the post loop

    
    $group_id = get_post_meta( get_the_ID(), '_bcg_group_id', true );
    
    if ( $group_id ) {
    	$group = groups_get_group( $group_id );
    	printf( "<a href='%s'>%s</a>", esc_url( bp_get_group_permalink( $group ) ), bp_get_group_name( $group ) );
    }
    
    

    That will show the link to the associated group.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25365
    Brajesh Singh on in reply to: Userheader content #34808

    Hi Adrian,
    That is a simple task. You can use xprofile_get_field_data to fetch the data and put it there.

    Which template pack are you using? Please let me know and one of our team member will share some code for it.

    I am assuming that the field names are “Name of Animal” and “Name of Owner”. If you are using different field name, Please share that too.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25365
    Brajesh Singh on in reply to: Code formatting is broken on our Buddypress Posts #34807

    Hi Sunjam,
    Welcome to BuddyDev.

    Are you using any plugin for formatting/hilighting the code. I can see that the pre/code block is there. The theme will not apply any style if you are using a pre tag.

    I wilol recommend using a syntax hilighter to have better control.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25365
    Brajesh Singh on in reply to: Conflict with Conditional Profile Fields #34806

    Hi @afifosh,
    Welcome to BuddyDev forums.

    I am sorry, The age/date fields are not supported by the conditional for using with conditional operators.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25365
    Brajesh Singh on in reply to: Conflict with Conditional Profile Fields #34805

    Hi Gino,
    Please provide me your error log. I have disabled the conditional field plugin and still your profile fields are not accessible. It shows that there was a fatal error on the site.

    Please share the error log.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25365

    Hi,
    Just updating that we have added the support now.
    https://buddydev.com/support/forums/topic/buddypress-auto-follow-plugin/#post-34792

    Closing this as resolved in favour of the other topic.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25365
    Brajesh Singh on in reply to: BuddyPress Auto Follow plugin #34792

    Hi Tosin,
    Thank you for your patience.

    We have added the support for Followers/followings in 1.0.3. You can select a type while creating a list and those actions will be performed when a user registers.

    Since you can select only one type(Friends/Followers/Following) with a list, we are adding the ability to clone lists in our next release. That will help if you want to use same list for multiple actions.

    Please give it a try.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25365
    Brajesh Singh on in reply to: BuddyPress Auto Follow Addon or Plugin Follow + #34791

    Hi,
    Thank you for your patience.

    We have added the support for Followers/followings in 1.0.3. You can select a type while creating a list and those actions will be performed when a user registers.

    Since you can select only one type(Friends/Followers/Following) with a list, we are adding the ability to clone lists in our next release. That will help if you want to use same list for multiple actions.

    Please give it a try.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25365
    Brajesh Singh on in reply to: Branded Login – Error message with limit attempt #34790

    Hi Johan,
    Thank you for reporting the issue.

    We haven’t tested the branded login with Cerber and don’t have any compatibility information yet.

    1. We will test. Cerber is most probably not compatible with branded login.

    2. The plugin does not understand what is blocking by IP. Most probably the Cerber is handling it and returning some kind of error instead of user to the branded login. That’s why branded login is showing this message.

    We will need 4-6 working days and to make these two compatible. I will reply back after the update.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25365
    Brajesh Singh on in reply to: [Resolved] BuddyBlog – Show Title of the Blog #34789

    Hi Daniel,
    Thank you for using the plugin.

    1. For some reason, you have this custom css being used

    
    buddypress-wrap .item-body h2, .buddypress-wrap .item-body .entry-title, .buddypress-wrap .item-body .screen-heading {
        display: none;
    }
    

    This is hiding the display. Any special reasons to have it?

    2.

    
    body.buddyblog .postmetadata{
    
     display:none;
    }
    
    

    Regards
    Brajesh