Replies
- Brajesh Singh on March 5, 2023 at 2:06 am in reply to: [Resolved] Sitewide gallery upload issue #48673
You are welcome!
You are welcome!
Yes, MediaPress only allows uploading from logged in users. Anonymous/non logged uploads are not supported.
Regards
Brajesh- Brajesh Singh on March 3, 2023 at 7:02 pm in reply to: [Resolved] Sitewide gallery upload issue #48660
I am glad it is clear.
In MediaPress, public is for viewing permission not the write/edit/delete.Regards
Brajesh Please do it from BuddyBlog->Group Settings
That menu is only available if you have BuddyBlog Groups plugin installed.
Regards
Brajesh- Brajesh Singh on March 3, 2023 at 7:00 pm in reply to: how to encrypt file name when uploading with Xprofile Custom Field Types #48658
Thank you Oscar.
Please do let me know if it worked or not?Regards
Brajesh - Brajesh Singh on March 3, 2023 at 11:05 am in reply to: BuddyBlog Groups – 1.0.0-RC-3 – possible bug – can’t save group tab settings #48652
Thank you Nik.
It does point me in the right direction.I will make sure that the status message is working properly in next release.
Thank you
Brajesh - Brajesh Singh on March 3, 2023 at 10:33 am in reply to: [Resolved] Order by – parameter for featured member plugin shortcode #48650
Hi Tosin,
Thank you for the details. I will have someone test it and write back to you early next week.Regards
Brajesh - Brajesh Singh on March 3, 2023 at 10:32 am in reply to: Show Custom Tab for users (not members) in BB Private Group #48649
Hi Azamat,
As conveyed over email, the plugin does not allow you to add public tab to private/hidden groups. That is how BuddyPress/BuddyBoss works.Marking it resolved as discussed over email.
Regards
Brajesh - Brajesh Singh on March 3, 2023 at 10:31 am in reply to: [Resolved] Display GROUPS Alphabetically in List #48648
Hi Dianne,
Thank you for the question.I have modified your shcorcode for flexibility. I hope it helps.
/** * Shortcode for listing groups of a user. * * @param array $atts shortcode attributes. * @param string $content content. * * @return string */ function user_world_memberships( $atts, $content = '' ) { $atts = shortcode_atts( array( 'user_id' => bp_displayed_user_id(), 'type' => 'alphabetical', 'order' => 'ASC', 'page' => 1, 'per_page' => - 1, 'group_type' => '', 'group_type__in' => '', 'group_type__not_in' => '', ), $atts, 'member_worlds' ); $groups = groups_get_groups( $atts ); $groups = $groups['groups']; if ( empty( $groups ) ) { return ''; } $list = ''; foreach ( $groups as $group ) { $list .= sprintf( '<li><a title="View %1$s" href="%2$s">%3$s</a>', esc_attr( $group->name ), esc_url( bp_get_group_permalink( $group ) ), esc_html( $group->name ) ); } if ( ! empty( $list ) ) { $list = "<ul class='custom-user-group-list'>{$list}</ul>"; } return $list; } add_shortcode( 'member_worlds', 'user_world_memberships' );P.S. we normally void providing coding support for 3rd party plugins but there are always exceptions.
Regards
Brajesh