Replies
- Brajesh Singh on July 18, 2017 at 7:56 pm in reply to: Problems with the Photo, video, music and album pages #9974
If it started looking like that, please use the older version. Is working fine for other BuddyPress user page?
- Brajesh Singh on July 18, 2017 at 6:45 pm in reply to: Problems with the Photo, video, music and album pages #9969
Hi Christian,
Welcome to BuddyDev.Are you using the customizr theme from wp.org? Is it the latest? Please let me know. I will need to download and test in order to assist you.
Thank you
Brajesh - Brajesh Singh on July 18, 2017 at 12:38 pm in reply to: [Resolved] Show gallery owner when using [mpp-list-gallery] #9965
Thank you Kjell 🙂
- Brajesh Singh on July 18, 2017 at 4:26 am in reply to: BuddyPress Moderation – Report Users/Groups #9963
Hi Graham,
Thank you for posting.
Do you mean creating a new plugin for this purpose or using the existing one?Thank you
Brajesh With version 1.1.6 and above, there is a better way to do it.
https://buddydev.com/support/forums/topic/rename-wall-photo-gallery-2/#post-9961
Hi,
Please upgrade to 1.1.6 and then you can put the following code in your bp-custom.php/** * Filter wall gallery title * * @param string $title name of the wall gallery. * @param array $args { * Context details. * @type string $component component name(e.g groups|members|sitewide) * @type int $component_id numeric component id( e.g group id or user id based on the component) * @type string $type media type(e.g photo, video,audio, doc etc) * * } * * @return string new title */ function mpp_custom_wall_gallery_name( $title, $args ) { // in this example, we are going to change the title for the groups wall gallery like this // <group name> wall gallery. if ( 'groups' === $args['component'] ) { $title = sprintf( '%s wall %s gallery', groups_get_group( $args['component_id']->name ), mpp_get_type_singular_name( $args['type'] ) ); } return $title; } add_filter( 'mpp_wall_gallery_title', 'mpp_custom_wall_gallery_name', 10, 2 );That will do it.
Regards
Brajesh- Brajesh Singh on July 17, 2017 at 8:12 pm in reply to: [Resolved] Add Name under Media Gallery #9959
Sorry for updating this post today(after 7 months).
In MediaPress 1.1.5, we have provided options to show the gallery/media creator in shortcode lists
Thank you.
Brajesh - Brajesh Singh on July 17, 2017 at 8:10 pm in reply to: [Resolved] Show gallery owner when using [mpp-list-gallery] #9958
Hi Andy,
Please upgrade to 1.1.5.
Now, you can use shortcode to display creator link
https://buddydev.com/mediapress/topics/getting-started/shortcodes/mediapress-gallery-listing-shortcodes/#gallery-creator-parametersand for media list too
https://buddydev.com/mediapress/topics/getting-started/shortcodes/mpp-list-media/#media-creator-parametersHope that helps.
- Brajesh Singh on July 17, 2017 at 5:14 pm in reply to: BuddyPress Editable Activity – not working #9956
Thank you. We will be looking into this.
- Brajesh Singh on July 17, 2017 at 11:28 am in reply to: Make 'Default Activity stream' show 'updates' instead of 'everything' #9953
Please see this
https://buddydev.com/buddypress/set-default-filter-buddypress-activity/Hope that helps.