Replies
Hi Bob,
I am sorry for the delayed reply.Here is what I am seeing in if we use the form on the single page
https://i.ibb.co/cwx1Fm0/Selection-412.png
https://i.ibb.co/fNdbRPV/Selection-413.pngPlease let me know what improvements you suggest.
Regards
BrajeshHi Muhittin,
That will be actually the initial beta release for this plugin. The scope of this plugin changed(It became a relationship api and then follow on top of that as an implementation(as suggested by BuddyPress core team) instead of just a follow plugin).Regards
Brajesh- Brajesh Singh on November 27, 2021 at 6:10 pm in reply to: [Resolved] Doubled Published Article and Custom Code not working #41769This reply has been marked as private.
- Brajesh Singh on November 27, 2021 at 6:04 pm in reply to: [Resolved] [BPPTCP] ActiveMember360 shortcodes not working #41768
Hi Sal,
Thank you for using the plugin.since the shortcode is not working, please contact the author of shortcode and let me know if there is anything special needed by their shortcode.
we do not do anything, simply call do_shortcode to render the shortcode.
Regards
Brajesh - Brajesh Singh on November 27, 2021 at 10:17 am in reply to: How to auto assign a role on multisite buddypress (buddyboss) network #41765
Hi,
I had a look and I don’t see BuddyPress/BuddyBoss adding the default role on sub site unless you are on the main site(or the Multi network mode is enabled). Do you have multi network mode enabled?Regards
Brajesh Hi Muhittin,
Thank you for the reply.The plugin is coming and will be available at the same time when BuddyPress 10.0 is released.
Regards
Brajesh- Brajesh Singh on November 27, 2021 at 8:19 am in reply to: How to auto assign a role on multisite buddypress (buddyboss) network #41761
oops, I made a mistake. the above code will not work for sub sites. It is not aimed for that purpose.
- Brajesh Singh on November 27, 2021 at 8:18 am in reply to: How to auto assign a role on multisite buddypress (buddyboss) network #41760
Hi,
Please use this code(there should not be any back tick inside the code, we use back tick here to wrap the code)./** * Change user role on first login */ function buddydev_change_user_role_on_first_login( $user_login, $user ) { if ( ! function_exists( 'buddypress' ) || user_can( $user->ID, 'manage_options' ) ) { return; } // check for user's last activity. $last_activity = bp_get_user_last_activity( $user->ID ); if ( empty( $last_activity ) ) { $role = 'author'; // please change with your desired role. $user->set_role( $role ); } } add_action( 'wp_login', 'buddydev_change_user_role_on_first_login', - 1, 2 );That should work.
Regards
Brajesh Hi Kiki,
You are right about it and I have conveyed similar thing to Ravi. He will be updating you in next couple of days.Regards
BrajeshHi Khalid,
Thank you.1. I am glad it resolved for recent visitors. I do not see any previous reply in this topic mentioning “Deactivate account” plugin. I will take a look now.
2. Sorry, if BuddyBoss does not allow you to do it, we can provide a filter for position(number). We may not be able to do more than that.
Regards
Brajesh