Replies
Hi Madhavi,
No, there is no available way to automate it from WP Admin to Cpanel. It is possible to do so with the CPanel APi
https://documentation.cpanel.net/display/DD/Guide+to+cPanel+API+2
https://documentation.cpanel.net/display/DD/cPanel+API+2+Functions+-+SubDomain%3A%3AaddsubdomainThe time and effort does not justify it as it is a problem with hosting and putting temporary fix is not the right way to handle it.
Regards
BrajeshHi Ahmed,
Most probably this plugin https://buddydev.com/plugins/bp-private-message-rate-limiter/ can be used with a few hooks to accomplish the same. It does not directly integrate with the PMPro though.Regards
BrajeshHi Jill,
I am sorry for the inconvenience.Are you using any other plugin for posting to activity? Also, which theme are you using?
Regards
Brajesh- Brajesh Singh on April 6, 2018 at 8:21 pm in reply to: [Resolved] insert a value into my new xprofile numeric field #14316
Hi Herve,
You may use the following code/** * Set an xprofile field value on account activate. * * @param int $user_id user id. */ function buddydev_insert_preset_field_value( $user_id ) { $field_id = 794; xprofile_set_field_data( $field_id, $user_id, 4 ); } add_action( 'bp_core_activated_user', 'buddydev_insert_preset_field_value' );That will insert/update the field value when user account is activated.
Regards
Brajesh - Brajesh Singh on April 6, 2018 at 8:15 pm in reply to: [Resolved] Ajax registor form customization #14315
Hi Daniel,
Thank you for posting1. Please use the selector .bpajax-register-window for apply to ajax registration.
2. I have put the space between the buttons. It is at the bottom of your custom css(one line)
Regards
Brajesh Hi Madhvi,
you have an issue with the wildcard DNS. Please contact your hosting provide and they will be able to assist. The wildcard dns is not working for you.Regards
Brajesh- Brajesh Singh on April 6, 2018 at 7:26 pm in reply to: BuddyPress Moderation – Report Users/Groups #14312
We are working on BuddyPress Community Moderation plugin and it will be available inn next 7-15 days.
Thank you
Brajesh - Brajesh Singh on April 4, 2018 at 3:17 pm in reply to: [Resolved] Payments for Featured members #14299
🙂
- Brajesh Singh on April 4, 2018 at 2:25 pm in reply to: [Resolved] Payments for Featured members #14297
Hi Khol,
It is a very specific use case and the plugin does not have this capability.Since the members are featured by site admin, you can sell a membership with any plugin and manually feature a user or use our API to do it automatically on membership purchase.
https://buddydev.com/plugins/bp-featured-members/Regards
Brajesh - Brajesh Singh on April 4, 2018 at 2:22 pm in reply to: [Resolved] BuddyPress Simple Front End Post (privilege of users) #14296
Hi Dime,
BuddyBlog allows you to define user capabilities who can create/edit/delete post.These settings are available at the bototm of the BuddyBlog settings
For example, you can use this
Which capability is required for creating post?to limit post creation.
You can use any capability from the following table.
https://codex.wordpress.org/Roles_and_Capabilities#Capability_vs._Role_TableFor example, if you specify edit_other_posts only editor, admin and super admins will be able to create post.
Hope that helps.
Regards
Brajesh