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: 25407

    Hi Kerem,
    Thank you for using the plugin.

    You will need some translation tool to translate a file.

    I suggest using POEdit. You may find this guide useful
    https://www.hostinger.com/tutorials/wordpress/how-to-translate-wordpress-theme-using-poedit
    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25407
    Brajesh Singh on in reply to: BuddyBlog, multisite posting #17790

    Hi Hervé,
    Welcome to BuddyDev forums.

    No, The plugin can not post to multiple blogs at one time. It can post to one site.

    You will need some kind of syndication plugin to move sync contents between blogs.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25407
    Brajesh Singh on in reply to: [Resolved] Integration with PMPro #17787

    Hi Irene,
    Thank you for posting.

    Please see the guide here.
    https://buddydev.com/docs/buddypress-member-types-pro/assigning-paid-memberships-pro-memberships-based-on-member-type/

    Hope it helps.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25407

    Hi Kreatsya,

    It seems there is a confusion. I did not say it is browser specific. I said tha it is most probably a javascript error you should look into console.

    It does not matter which browser’s console you check. Since chrome has a nice document, I linked it for you.

    Also, as of the media modal is concerned, I can assure that it is not cause by our plugin. We are simply using WordPress default editor and all the work is done underneath by WordPress itself.

    Something else is misbehaving with the WordPress media modal and causing it. If you check our plugin, you will not find a single line of javascript code for front end(we don’t need them atleast yet).

    So, I am sure that the error is due to some plugin misbehaving and not BuddyBlog.

    A better strategy to find the conflicting plugin is to use a plugin like WP Staging and create an staging enviornment. Then disabling plugins one by one and finding the conflict.

    Please let me know which plugin is conflicting.

    About RT Media, It is in no way related to BuddyBlog upload. They have a custom uploader like we have in MediaPress. BuddyBlog does not use its own uploader and lets WordPress do the job.

    Hope that clarifies.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25407

    You are welcome.

  • Keymaster
    (BuddyDev Team)
    Posts: 25407

    Hi Max,
    That’s the problem. It is hardcoded and the only way to do is to completely rewrite the whole “bp_core_add_cropper_inline_js” function. It does not seem justified for a minor change like this. I will rather open a topic on BuddyPress trac and see if they can add it as an enhancement in future version.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25407

    Hi Richard,
    I am sorry about that. Allow me 1-2 days and I will check on wporg with the lightbox plugins to recommend any.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25407
    Brajesh Singh on in reply to: [Resolved] Link Page to Groups #17777
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25407

    Hi Max,
    Even though both the section are handled by BuddyPress, Profile avatar uses different code for showing the cropper.

    If you want, you can fix it by editing buddypress/bp-core/bp-core-cssjs.php and changing oine 291 from

    
    aspectRatio: <?php echo (int) $aspect_ratio; ?>,
    

    to

    
    aspectRatio: <?php echo $aspect_ratio; ?>,
    

    The bug lies in the legacy code.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25407

    Thank you Max.

    The problem is the aspect ratio
    It should not be zero.

    
    aspectRatio: 0,
    
    

    Is your theme defining custom height/width for avatar? I just checked the BuddyPress code in ‘bp_core_Add_cropper_inline_js’ and the ratio is calculated by this

    
    
    $aspect_ratio = $full_width / $full_height;
    
    

    It is later type casted to integer. So, if the theme defines width less than height, It gets set to zero.

    I hope it clarifies.

    Regards
    Brajesh