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: 25494
    Brajesh Singh on in reply to: [Resolved] Issue with User Badges Plugin #25066

    Hi Sheffie,
    Welcome to BuddyDev forums.

    Are you getting any error while activating this plugin? Or are you able to activate the plugin but unable to upload images?

    Please let me know and I will assist.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494

    Hi Mike,
    Hope you are doing well. I am sorry I could not reply in time as got overwhelmed by the work.

    Are you using multiple member type fields? If yes, It will be a problem in future.

    Member Types are like single taxonomy.
    For example, if we are organizing books, we can use member types as Genre or as Publishing House. The member type terms allows us to group item by a single classification.

    For example, “keyboard” in your case is a good candidate for member types. But all the type of keyboards can not be sub organized using it.

    I am not sure how much sense that makes but it seems to me you are most probably looking for multiple way to classify and not multiple terms to classify into.

    A user can have more than 1 member type but we do not have a way to sub divide member types to smaller lists and properly sync the field(multiple field) to user’s actual member type.

    We need to think some other strategy for it.

    If you can tell me what other purposes you are trying to accomplish(other than auto adding to groups), I may have some idea.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494

    Hi Noah,
    The issues related to member type has been resolved on your site.

    Your current issues are not related to us. We will assist you but it will have a bit low priority.
    Also, Please open a new topic in future to help us avoid repeating the same solution for others(if anyone has similar issue, they can use it).

    Now, coming to the topic.

    1. You will need to sync display name since you are not using BuddyPress registration. I don’t see a ready to use solution.

    There exists a plugin
    https://wordpress.org/plugins/bp2wp-full-sync/

    But it does the reverse.

    2. Changing “Base”. Yes, it is easy.
    Please see
    https://www.youtube.com/watch?v=ry7OlkyM3TY

    Hope that helps.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494

    Hi,
    Just updating.

    I will be assisting you tomorrow on this.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494

    Hi Terry,
    Please make sure that the list view is set for document type as the files belong to dpcument type.

    PS:- is there any chance you are using shortcode or widget for displaying the media?

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494

    Hi Vivek,
    Please visit the posts screen on user profile and note down the part after username.

    For example, if it is http://example.com/members/vivek/abc/xyz
    our slug is ‘abc/xyz’

    After that, Please change this line

    
     $redirect_url = bp_core_get_user_domain( get_queried_object_id() );
    

    with that slug as

    
    
     $redirect_url = bp_core_get_user_domain( get_queried_object_id() ) .'abc/xyz';
    
    

    Hope that helps.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494

    Hi Kir,
    For video thumbnail, we have worked on automatic video thumbnail. You will need FFMPEG to use it though

    https://buddydev.com/plugins/mpp-local-transcoder/

    For the view button, Please use any translation tool.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494
    Brajesh Singh on in reply to: [Resolved] Hyphenation #25028

    Hi Carsten,
    You may want to take a look at this
    https://css-tricks.com/almanac/properties/h/hyphenate/

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494

    Please try clearing cache if any.

  • Keymaster
    (BuddyDev Team)
    Posts: 25494

    Hi Vivek,
    Thank you for reporting.

    It seems you have following code in your child theme

    
    @media (max-width: 767px)
    .bpmts-moderation-button-wrap.generic-button {
        position: absolute;
        top: -50px;
        right: 0;
    }
    
    ....some other code
    
    }
    

    This is causing the issue. It is most probably added by someone to fix the positioning on button on some other place and has the side effect here.

    If you can tell me why this code was added originally, I may be able to provide a better context specific solution.

    Regards
    Brajesh