Replies
- Brajesh Singh on March 29, 2020 at 7:54 pm in reply to: [Resolved] Why are menu items pr default listed with dots? #28406
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 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
BrajeshHi 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- Brajesh Singh on March 28, 2020 at 1:59 am in reply to: Moderated bbPress discussions and replies are still emailed out to users #28392
Hi Nabha,
Thank you.I will check it today and will get back to you in next 24 hours.
Regards
Brajesh - Brajesh Singh on March 27, 2020 at 10:01 pm in reply to: [Resolved] Remove the subject line requirement in messages? #28388
Hi Carsten,
Thank you for confirming. I am glad it worked.Regards
Brajesh - Brajesh Singh on March 27, 2020 at 10:00 pm in reply to: Moderated bbPress discussions and replies are still emailed out to users #28387
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 - Brajesh Singh on March 26, 2020 at 11:21 pm in reply to: [Resolved] Remove the subject line requirement in messages? #28381
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 - Brajesh Singh on March 26, 2020 at 11:04 pm in reply to: [Resolved] Remove the subject line requirement in messages? #28379
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 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- Brajesh Singh on March 26, 2020 at 10:42 pm in reply to: [Resolved] Remove the subject line requirement in messages? #28374
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