BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 25203
    Brajesh Singh on in reply to: Mediapress caching #49154

    Hi earl,
    I am sorry to hear. We don’t have access to the specific plugin, so unable to troubleshoot.

    If we can get access to a staging server with the caching plugin, we may be able to troubleshoot. Please feel free to reach out in future if you need us to troubleshoot it.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25203
    Brajesh Singh on in reply to: Blurry-avatar-images #49153

    Hi Carsten,
    you will need to change the value as shown on this line
    https://github.com/buddypress/buddypress/blob/master/src/bp-members/bp-members-blocks.php#L632

    The height and width needs to be changed. We could trying using !important rule in css if you need to go that way.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25203
    Brajesh Singh on in reply to: User Profile Questions #49151

    Hi Simon,
    Thank you for the question.
    I am assuming you are using dynamic tab content plugin with profile tabs.

    T%he dynamic content plugin limits what is visible to the user(content). It does not restrict the tab.

    If you have added tab and scoped it to Author role, it will appear on all author roles but the content will be only visible for the users form whom you have created the content and set them as author.

    is it behaving differently?

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25203

    Hi Nik,
    Thank you.
    That makes sense!

    Would you be able to link me to screenshots from your form work flow and your group posts settings(on group manage page). That would give us a lot more insight and help us resolve it.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25203
    Brajesh Singh on in reply to: Flairs on activity posts #49119

    Hi,
    Thank you for the question.
    At the moment I am not aware of any plugin doing it. I do remember something similar in Youzify plugin.
    Please take a look at it and see if that works for you.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25203
    Brajesh Singh on in reply to: Shortcode for Buddyblog #49118

    Hi Van,
    I am glad it is working now.

    you may add following code to your bp-custom.php to make it work.

    
    		if ( ! defined( 'BP_BUDDYBLOG_SLUG' ) ) {
    			define( 'BP_BUDDYBLOG_SLUG', 'blog' );
    		}
    

    I am not sure about your other question as the posts are just normal WordPress posts. BuddyBlog does not do anything with their listing.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25203

    Hi Nik,

    BuddyBlog sets the post status to either of the three statuses ‘draft’, ‘publish’, ‘pending’ depending on

    1. If a user saves post as draft, the post status is saved as ‘draft’
    2. If the site admin has forced that the post must be submitted for approval, on post submission, status is set to ‘pending’
    3. If the site admin has allowed publishing on submission, on submission the status is set to ‘publish’.

    My suggestion will be to check if the data is present for post being submitted in the events table, if not, you may want to add that.

    Hope that helps.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25203

    You are welcome.
    Sure, I look forward to it.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25203

    Hi Iain,
    You can use xprofile_get_field_data for fetching the field value.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25203

    Hi Iain,
    I had a look. BuddyPress does not have any field that allows you to upload avatar on registration. You are probably using a custom field type and that’s why it is not working.

    Regards
    Brajesh