Replies
- Brajesh Singh on August 2, 2017 at 11:52 am in reply to: limit gallery link on members profiles #10155
Hi Patti,
Can you please list the membership level names and which of them should be allowed to have gallery?I will try to post a complete solution.
The above code limits based on capability(In this example, subscriber, author and contributors won’t have gallery).
Thank you
Brajesh - Brajesh Singh on August 2, 2017 at 4:44 am in reply to: limit gallery link on members profiles #10152
Hi Patti,
It is php code.If you don’t understand the code, I will suggest hiring someone or avoiding this use case. This is a very small thing(you need to specify the membership levels and conditions and the developer can update the above code for you and put it on the site).
I am sorry that we don’t have a ready made solution for this case, we will try to have something as addon in future.
Regards
Brajesh - Brajesh Singh on August 2, 2017 at 4:29 am in reply to: [Resolved] remove activity delete button text #10150
Thank you for the help here @ravisharma
Closing it since it is resolved.
- Brajesh Singh on August 2, 2017 at 4:28 am in reply to: [Resolved] bp-activity-comment-notifier translation #10148
Thank you Ahmed.
Glad to know that.Regards
Brajesh Hi Frances,
I am sorry but I am unable to understand. Can you please elaborate it a little better. How are you getting the user to add the tag line.
Where do you want this tag line to be(Screenshot will be nice)?Thank you
BrajeshHi,
Thank you for posting.At the moment, the only way I see it will be using the “bp_core_remove_nav_item()” to remove the nav from the non paid members screen.
Will be comfortable if we posted some code example?
Thank you
Brajesh- Brajesh Singh on August 1, 2017 at 4:31 am in reply to: [Resolved] bp-activity-comment-notifier translation #10138
Hi Ahmed,
Will look into it and get back to you.Thank you
Brajesh - Brajesh Singh on August 1, 2017 at 4:30 am in reply to: BuddyPress User Testimonials – Adding a custom field #10137
Hi Darren,
Thank you for posting.Yes, It is doable. We will post some code later today to show how to do it.
Thank you
Brajesh - Brajesh Singh on July 31, 2017 at 2:08 am in reply to: Member Type Pro – WooCommerce Subscriptions #10132
Hi Aronld,
Welcome to BuddyDev forums.
Are you using this pluginhttps://woocommerce.com/products/woocommerce-memberships/
That is the plugin we have compatibility with. If you are using another plugin, Please link me.
Thank you
Brajesh - Brajesh Singh on July 30, 2017 at 2:58 am in reply to: [Resolved] Adding Usernames to Gallery Listing #10129
Hi Kristin,
Thank you.
It’s a good idea and will like to have it in the core in future.For now, you may use the following code
/** * Add @gallery-creator-username on single group gallery. */ function mpp_custom_show_author_user_name_with_single_gallery() { if ( ! bp_is_group() ) { return ; } $gallery = mpp_get_gallery(); if ( ! $gallery ) { return ; } echo '@' . bp_core_get_username( $gallery->user_id ); } add_action( 'mpp_before_single_gallery', 'mpp_custom_show_author_user_name_with_single_gallery' );Hope that helps.
Regards
Brajesh