-
Prashant Singh replied to the topic Activation Email in the forum Miscellaneous 6 years, 1 month ago
Welcome ๐
-
Prashant Singh replied to the topic Activation Email in the forum Miscellaneous 6 years, 1 month ago
Hi,
Can you please talk to your hosting support about this issue? Sometimes it’s on their end and they need to check why server is taking this much time to send mail.
Thanks
-
Prashant Singh replied to the topic Registration notice, manual activation in the forum How-to & Troubleshooting 6 years, 1 month ago
add_filter( 'bp_registration_needs_activation', '__return_false' );
Please try this snippet.
Also you can install loco translate plugin and find the text using this plugin and then can change it to something else.
Thanks
-
Prashant Singh replied to the topic Links in members-loop for Profile Field in the forum Installing BuddyPress 6 years, 1 month ago
Hi,
May I know which theme you are using and is it a BuddyPress theme?
How you are entering expertise there? Is it any CPT or anything that you just have to select?
Also if can send a screencast will be better to explain.
I did a test but I put my value in anchor tag so it is coming a s a link everywhere. Please see:…[Read more]
-
Prashant Singh replied to the topic Issues with uploading profile pictures in the forum How-to & Troubleshooting 6 years, 1 month ago
Hi,
Can you please check if there is any error in browser console? Also if can check with the default theme like twenty seventeen to see if the issue remains same then it will be great.
Thanks
-
Prashant Singh replied to the topic How to send private massage only support person's role not anyone in buddypress in the forum How-to & Troubleshooting 6 years, 1 month ago
I will try to code a snippet for this, will let you know soon. Do you know the user id of ‘support’ user that will be there in to box?
Thanks
-
Prashant Singh replied to the topic Buddy Press User Profile Avatar Picture Preview not Showing in the forum How-to & Troubleshooting 6 years, 1 month ago
Please consult your theme developers. Try to ask in their support forum to fix this issue. It’s your theme’s issue re-installation will not fix it.
Thanks
-
Prashant Singh replied to the topic How to send private massage only support person's role not anyone in buddypress in the forum How-to & Troubleshooting 6 years, 1 month ago
For example Sent to field automatically has โsupportโ word and user canโt edit so users have to only two fields remaining subject and message. So, in this settings, users can only sent a message to support person only. Not any other.
So ‘support’ will be a user, right?
-
Prashant Singh replied to the topic How to send private massage only support person's role not anyone in buddypress in the forum How-to & Troubleshooting 6 years, 1 month ago
add_action( 'messages_message_before_save', 'ps_manage_sending_of_private_message',10,1 );
[Read more]
function ps_manage_sending_of_private_message( $message_object ) {
$receivers = $message_object->recipients;
foreach($receivers as $receiver){
$receiver_id = $receiver->user_id;
$user = get_userdata( $receiver_id );
$user_roles = $user->roles;
if… -
Prashant Singh replied to the topic How to send private massage only support person's role not anyone in buddypress in the forum How-to & Troubleshooting 6 years, 1 month ago
function ps_remove_private_message_button( $button ) {
$user = bp_displayed_user_id();
if ( !empty( $user->roles ) && is_array( $user->roles ) ) {
if ( $role != 'your_role_here') {
$button = '';
}
}
return $button;
}
add_filter( 'bp_get_send_message_button', 'ps_remove_private_message_button', 10 , 1 );Hi,
One solution…[Read more]
-
Prashant Singh replied to the topic Buddy Press User Profile Avatar Picture Preview not Showing in the forum How-to & Troubleshooting 6 years, 1 month ago
And what about the theme? Have you tried switching to the default theme (twenty seventeen or any default theme)?
Thanks
-
Prashant Singh replied to the topic CPT – Each post connects to a group in the forum How-to & Troubleshooting 6 years, 1 month ago
Hi,
To create a group automatically for new CPT will require custom coding and have to check how it will be integrated and what information you want to show in the activity.
Manual creation is obviously one of the ways like you have the CPT city then create a group called ‘city’ and then people can come to a post there but still, I want to know…[Read more]
-
Prashant Singh replied to the topic text input malfunctioning-typing words from right to left in the forum How-to & Troubleshooting 6 years, 1 month ago
Sure, please try. Also by default theme, I mean default WordPress theme like Twenty sixteen and others.
Thanks
-
Prashant Singh replied to the topic Hide profile fields from editing for specific users in the forum How-to & Troubleshooting 6 years, 1 month ago
function ps_hide_profile_edit( $retval ) {
[Read more]
// remove field from edit tab
if( bp_is_user_profile_edit() && !current_user_can('edit_users')) {
$retval['exclude_fields'] = 'field_id'; // ID's separated by comma
}
// allow field on register page
if ( bp_is_register_page() ) {
$retval['include_fields'] = 'field_id'; // ID's separated by… -
Prashant Singh replied to the topic Put pages behind BuddyPress login in the forum How-to & Troubleshooting 6 years, 1 month ago
Welcome ๐
-
Prashant Singh replied to the topic Put pages behind BuddyPress login in the forum How-to & Troubleshooting 6 years, 1 month ago
Does the Restrict Content plugin integrate with BuddyPress registration or require a separate registration?
It works with BuddyPress Registration. It restricts content for non-logged in users so mechanism is simple if not a user and is a guest only then restrict the content.
-
Prashant Singh replied to the topic text input malfunctioning-typing words from right to left in the forum How-to & Troubleshooting 6 years, 1 month ago
Hi,
Can you please let me know what is the last action you did before this started Also if you can check once by disabling other plugins except BuddyPress to see if the issue remains. Please also try to switching to the default theme to check only if the issue is still same there.
Thanks
-
Prashant Singh replied to the topic Groups – Content in the forum How-to & Troubleshooting 6 years, 1 month ago
Can you please share a screenshot of the content?
Also I am not asking to stop using your theme it’s just for debugging that activate the default one and then check if the issue is there or not. If not then certainly your theme is creating the issue and you have to consult with the theme developers.
Thanks
-
Prashant Singh replied to the topic Put pages behind BuddyPress login in the forum How-to & Troubleshooting 6 years, 1 month ago
Hi,
Please try this plugin https://wordpress.org/plugins/restrict-content/
Hopefully this will help you.
Thanks
-
Prashant Singh replied to the topic Groups – Content in the forum How-to & Troubleshooting 6 years, 1 month ago
Sure ๐
- Load More
@prashantvatsh
Active 3 months, 3 weeks ago