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

    Hi Carsten,

    Thank you for the question.

    It is happening because they are list items and by default list items are styled that way.

    You can override that by specifying list-style-type:none; on a proper selector(css selector depends on how you have put the code).

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494
    Brajesh Singh on in reply to: [Resolved] Troubleshooting my site #28405

    Hi Mike,
    Thank you.

    We are doing well. I hope you and your family are safe.

    Please replace your display name filter

    
    function my_bp_displayed_user_fullname() {
    	global $bp;
    
    	return $bp->displayed_user->userdata->user_login;
    }
    add_filter( 'bp_displayed_user_fullname' , 'my_bp_displayed_user_fullname' );
    
    

    with this

    
    
    function my_bp_displayed_user_fullname( $name ) {
    	return bp_get_displayed_user_username();
    }
    
    add_filter( 'bp_displayed_user_fullname', 'my_bp_displayed_user_fullname' );
    
    

    That will fix it.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494
    Brajesh Singh on in reply to: S3 Storage Plugin? #28393

    Hi Yuva,
    Thank you for the question.

    We have the plugin working with Google Cloud storage currently. We haven’t added aws storage support yet. Will be doing that soon.

    Please do let me know if you will be interested in the google cloud storage, I will share a copy.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494

    Hi Nabha,
    Thank you.

    I will check it today and will get back to you in next 24 hours.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494

    Hi Carsten,
    Thank you for confirming. I am glad it worked.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494

    Hi Nabha,
    Thank you for the topic and reporting the issue.

    Can you please ask the developers of buddypress-group-email-subscription if there is any way to skip some activities(any filter).

    Please let me know their suggestions and I will add compatibility.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494

    Hi Carsten,

    You are welcome.

    Are you not using the bp-legacy template? If you are using it, the compose screen will need page reload each time you want to compose a message. And if a page is loaded, the code should work fine.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494

    Please try adding this to your bp-custom.php

    
    
    add_action( 'wp_footer', function () {
    	?>
    	<script type="text/javascript">
            jQuery(document).ready(function ($) {
    
                if ($('#send_message_form #subject').length) {
                    $('#send_message_form #subject').val('Some message subject');
                }
            });
    	</script>
    	<?php
    } );
    
    

    Let me know if i works or not?

    It assumes that the theme loads jQuery.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494
    Brajesh Singh on in reply to: User roles to upload media #28375

    Hi Phil,
    Welcome to BuddyDev.

    MediaPress allows everyone of upload out of the box.

    Are you using any custom code? Also, are you using MediaPress with BuddyPress or without BuddyPress?

    Please let me know and I will assist.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494

    Hi Carsten,
    Like I said earlier, It is very much dependent on the theme.

    For example, if you check demo of our Community Builder theme, we have removed it.

    We will not be able to assist with your theme and will suggest asking your theme developer for the guidance.

    Regards
    Brajesh