Replies
- Brajesh Singh on April 22, 2017 at 7:39 pm in reply to: BuddyBlog – Grid Layout for Post Archive #8708
Hi Vit,
Thank you for posting.1. we haven’t installed BuddyBlog on our demo site, we are working on a few more demos which will showcase it. If you want, I can post a few screenshots from our dev system.
2. If you need custom job, Please get in touch with us using Hire Us link and one of our team members will assist you.
Thank you
Brajesh - Brajesh Singh on April 22, 2017 at 7:37 pm in reply to: Problem with Plugin Site Wide Activity: Remove reply users #8707
Hi Alex,
Thank you for posting.We are looking at it and may provide an option and push the new plugin by Monday.Thank you
Brajesh - Brajesh Singh on April 22, 2017 at 7:25 pm in reply to: Displaying title and user on shortcode pages #8705
Please post me a link to the screenshot. I am not sure I am able to get it. I did check on my local dev environment and it seemed to be working fine.
- Brajesh Singh on April 22, 2017 at 7:24 pm in reply to: [Resolved] featured members plugin – no css when shortcode in page #8704
Hi Gibby,
We do not supply any css with the theme for listing members and leave it upto the theme. For most of the theme, It should work out of the box(due to use of generic buddypress classes etc).Please contact your theme author for assistance if it is not working for your site.
Regards
Brajesh - Brajesh Singh on April 22, 2017 at 7:07 pm in reply to: [Resolved] Profile Background option missing #8703
Hi Jason,
I tried the plugin with WordPress 4.7.4, BuddyPress 2.8.2 and the West Theme 1.11 and I don’t see any issue.It is most probably caused by some other code or css. If you can provide me temporary guest access to your site, I should be able to isolate it and help you.
Thank you
brajesh Hi Gregg,
Please try isolating the issue by disabling/enabling the plugins one by one. we need some way to isolate it and if we can, it will be simple to reason.Hi Gregg,
can you please check it on a different installation or by changing the theme? I don’t see any issue on my local here.- Brajesh Singh on April 20, 2017 at 3:42 pm in reply to: Displaying title and user on shortcode pages #8686
You can put it in your theme’s functions.php or in the bp-custom.php in the plugin’s directory
https://buddydev.com/docs/guides/guides/buddypress-guides/what-is-bp-custom-php/
Regards
Brajesh - Brajesh Singh on April 20, 2017 at 2:27 pm in reply to: Displaying title and user on shortcode pages #8684
Hi Ryan,
The following code will add the gallery creator’s name in the gallery title at all places/** * Injects gallery owner's name in the gallery title * * @param $title * @param $id * * @return string */ function mpp_custom_add_owner_name_gallery_title( $title, $id ) { $gallery = mpp_get_gallery( $id ); if ( ! $gallery ) { return $title ; } //do you want to only filter for certain component? uncomment the below lines /* if ( 'sitewide' !== $gallery->component ) { return $title; } */ return $title . '<span class="gallery-owner-user">' .sprintf( ' by: %s', bp_core_get_userlink( $gallery->user_id ) ) .'</span>'; } add_action( 'mpp_get_gallery_title', 'mpp_custom_add_owner_name_gallery_title', 10, 2 );Hope that helps.
Regards
Brajesh - Brajesh Singh on April 20, 2017 at 1:13 pm in reply to: Displaying title and user on shortcode pages #8683
Thank you Ryan.
Please let me check and I will post back.
Regards
Brajesh