Replies
- Brajesh Singh on June 11, 2020 at 7:18 pm in reply to: [Resolved] How can I Remove BbPress Replies From Buddypress Activity #30741
No issues.
Your problem is you have tinymce disabled by something(most probably another plugin) and that is causing it.
Here is what it should look when the wp wditor is enabled.
https://i.imgur.com/Qv6dLrA.pngRegards
BrajeshLink to the site please.
- Brajesh Singh on June 11, 2020 at 5:35 pm in reply to: [Resolved] Shop and Profile Privacy Icons not working #30733
Thank you for providing me the access.
The issue is, there is a slash missing in the css
Please change this
#buddypress .bp-settings-container .bp-navs #account-admin-visibility-mode:before { content: 'E90D'; }to
#buddypress .bp-settings-container .bp-navs #account-admin-visibility-mode:before { content: '\E90D'; }Please make sure the content is
'\E90D'and not
'E90D'Regards
Brajesh - Brajesh Singh on June 11, 2020 at 5:26 pm in reply to: [Resolved] Make Affiliate WP Appear Within Buddy Boss Frame #30732
Hi Mikel,
If the shortcode works with Wc4BP, I do not see any reason for it to not work with Profile tabs pro.
Please provide me temporary details via mail(You already have my email), and I can quickly check the reason. If for some reason it doe snot work(Say it needs page context), I can find a way to solve.
Since the affiliate plugin is a premium plugin, I can not test it on my own. That’s why I requested for the credentials.
Regards
Brajesh - Brajesh Singh on June 11, 2020 at 5:20 pm in reply to: Member Types Pro – Displaying based on type #30730
Hi Granmeh,
Thank you for the patience.You may use following code in bp-custom.php to achieve that
https://gist.github.com/sbrajesh/f7350e1687505bd10f94e6233a70ead2
It assumes the users have member type ‘male’, ‘female’. Please feel free to update as needed.
Regards
Brajesh Hi Nik,
You can do it without new field type but I will recommend new field type. With new field type, you will have control over option key and labels(can have different value and labels in the dropdown), With an existing field like select box, we do not get that.Regards
Brajesh- Brajesh Singh on June 11, 2020 at 5:13 pm in reply to: [Resolved] Make Affiliate WP Appear Within Buddy Boss Frame #30728
Hi Mikel,
That is exactly what Profile tabs pro is supposed to do. Your tabs are configured incorrectly.
Please grant me access to your site admin for 10 minutes and I can create a tab to help you with it.
What you are currently doing is creating an external link, you should not. You need to add a normal tab and use the shortcode.
Regards
Brajesh - Brajesh Singh on June 11, 2020 at 5:10 pm in reply to: How can I Get Buddypress Favorite Count #30727
Hi Adeala,
You can get the total favourite count using this function$count = bp_activity_total_favorites_for_user( $user_id );where you need to provide the $user_id for the context.
For example, to get total favourite count for logged in user, we can use
$count = bp_activity_total_favorites_for_user( get_current_user_id() );If you are on a user profile and want to fetch the total count of the displayed user, you can do it like this
$count = bp_activity_total_favorites_for_user( bp_displayed_user_id() );Hope that helps.
Regards
Brajesh Hi Hugo,
1. Which template pack are you using? Do you have blog post setup to show on profile or as normal blog post? Did you modify single.php template from the buddyblog plugin?
2. We have next major update imminent(in next 7-8 days) and you will have this option. Since you have Buddydev membership, you can almost control everything(create custom fields from backend, limit who can post, multiple post type etc). I am leaving it in favour of next version.
3. The plugin grants subscribers right to upload image. I will check for the featured image again and let you know.
Regards
Brajesh