-
Brajesh Singh replied to the topic BuddyPress redirect in the forum How-to & Troubleshooting 6 years, 1 month ago
Thank you.
I checked the code. The plugin does not support login_redirect filter and BP redirect to profile won’t work with it.I will suggest creating a support ticket on the plugin page and asking to support ‘login_redirect’ filter for redirection url.
They do have a filter ‘lwa_ajax_login’ for filtering the whole returned data but it is too…[Read more]
-
Brajesh Singh replied to the topic BuddyPress redirect in the forum How-to & Troubleshooting 6 years, 1 month ago
hi @wegosi,
Thank you for asking.
I am not sure which ajax login plugin you are referring to.This plugin does not actually redirects the user, it simply changes the url where the default redirection happens.
So, if it is not working with an ajax login plugin, Please ask the developer if they support ‘login_redirect’ filter. If not, please ask…[Read more]
-
Brajesh Singh replied to the topic how to disable site creation in the forum How-to & Troubleshooting 6 years, 2 months ago
You can login to your WordPress dashboard using your admin credentials.
Once inside the dashboard, Please visit Network Admin->Settings. There you will see “Registration Settings”.
Select “User accounts may be registered” and that will disable the new blog creation but allow registering new user account.
Hope that helps. -
Brajesh Singh replied to the topic Custom Buddypress permalink in the forum How-to & Troubleshooting 6 years, 6 months ago
Hi,
It seems you are trying to create a dynamic link to BuddyPress profile tabs. if that is the case, BuddyPress has a special slug ‘me’ that links to currently logged in users profile.For example, to link to your events page, you will use
https://www.mysite.com/members/me/events/
The first part
https://www.mysite.com/members/
Is the link…[Read more]
-
Brajesh Singh replied to the topic Call to undefined function bp_is_member() in the forum How-to & Troubleshooting 7 years ago
hi,
bp_is_member() is not available in BuddyPress.For your task, You should use
bp_is_user()
Hope that helps.
Regards
Brajesh -
Brajesh Singh replied to the topic Force Profile Picture in the forum How-to & Troubleshooting 7 years, 2 months ago
Hi,
Do you have the BuddyPress Force Profile Photo plugin active? If yes, Please disable it.If no, you will need to consult your theme developer, as they might have added it.
Hope that helps.
-
Brajesh Singh replied to the topic Changing Email Activation Redirect in the forum How-to & Troubleshooting 7 years, 3 months ago
Hi,
I am sorry about that. Can you please disable and see if the email is being sent? I looked ad the plugin code and I don’t see anything that can prevent it(It is just 4-5 line of code).Regards
Brajesh -
Brajesh Singh replied to the topic Single line text field in the forum How-to & Troubleshooting 7 years, 3 months ago
Hi Carsten,
Do you want to disable the toolbar(Rich text area) and use plain text area?If that is the case, you can put following line in your theme’s functions.php or the bp-custom.php(in the plugins directory)
add_filter( 'bp_xprofile_is_richtext_enabled_for_field', '__return_false' );Hope that helps.
Regards
Brajesh -
Brajesh Singh replied to the topic Disabling number functionality in textboxes in the forum How-to & Troubleshooting 7 years, 3 months ago
This can be easily done by validating the input both client side(using javascript) and server side.
Ask them to look into data validation and they should be able to do it.
regards
Brajesh -
Brajesh Singh replied to the topic Changing Email Activation Redirect in the forum How-to & Troubleshooting 7 years, 3 months ago
Hi,
Most probably you are looking for a solution that does this:-1. Logs the user to the site when they activate their account
2. redirects the user to their profile.If that is the case, you can use our free plugin
Hope that helps.
Brajesh -
Brajesh Singh replied to the topic How can I stop the akismet of buddypress? in the forum How-to & Troubleshooting 7 years, 3 months ago
If you put that code , It should be disabled.
An easy way to verify it will be to login as a normal subscriber and write an update with 4-5 links and see if that is posted or not.
Regards
Brajesh -
Brajesh Singh replied to the topic How can I stop the akismet of buddypress? in the forum How-to & Troubleshooting 7 years, 3 months ago
Hi,
You can put this in your bp-custom.php or yoour theme’s functions.php
add_filter( 'bp_activity_use_akismet', '__return_false' );
That should stop akismet from checking activity.
-
Brajesh Singh replied to the topic Please help with activity comments in the forum How-to & Troubleshooting 7 years, 4 months ago
Hi,
Please put the following code to your bp-custom.php/**
* Step 1: Store the group id in meta when there is a new comment.
*/
function buddydev_store_group_in_activity_meta( $comment_id, $r, $activity ) {if ( $activity->component != 'groups' ) {
return;
}bp_activity_update_meta( $comment_id, '_group_id', $activity->item_id…[Read more]
-
Brajesh Singh replied to the topic Register and Activate pages redirect to homepage in the forum Installing BuddyPress 7 years, 5 months ago
Hi,
It is an expected behaviour. Since you are logged in to the site you can not see the Register/Activation page.Please try opening the link in a new browser or incognito mode where you are not logged in to that site and they will open.
Hope it clarifies.Regards
Brajesh -
Brajesh Singh replied to the topic What Happens To Group When Accounted Deleted in the forum Installing BuddyPress 7 years, 5 months ago
Hi,
It’s a very good question.1. When the user is deleted, he is removed from all groups
2. If the user is the creator of the group and only admin of the group, the group will be deleted. if the user is not the creator of the group or there are more than 1 admin, the group won’t be deleted.If the group is not deleted, the site admin can always…[Read more]
-
Brajesh Singh replied to the topic Login Redirect To Activity Personal Page in the forum Installing BuddyPress 7 years, 5 months ago
Thank you. Thank you for leaving a review on wp.org too 🙂
-
Brajesh Singh replied to the topic Login Redirect To Activity Personal Page in the forum Installing BuddyPress 7 years, 5 months ago
You may use my Redirect to profile plugin.
It does exact same thing.Hope that helps.
-
Brajesh Singh replied to the topic Disable Alphabetical in the forum How-to & Troubleshooting 7 years, 6 months ago
Do you want to remove the “Alphabetical” in the Order By dropdown?
If you are using a BuddyPress specific theme, please look into yourtheme/buddypress/members/index.php and you will see the code there for this option. Just remove that.
if you are not using a BuddyPress specific theme or your theme does not have this file, you can copy index.php…[Read more]
-
Brajesh Singh replied to the topic Blog Search to include Members in results page? in the forum How-to & Troubleshooting 7 years, 7 months ago
You can do it like this
bp_has_members( array ( 'search_terms'=> get_search_query() ) );get_search_query() is the function you are looking for.
Hope that helps.
-
Brajesh Singh replied to the topic Blog Post Activity Stream Updates in the forum How-to & Troubleshooting 7 years, 7 months ago
Hi,
most probably site tracking option is disabled. Please visit settings->BuddyPress and on the component page, please make sure that site tracking is enabled.Once it is enabled, the new post/comments will be recorded in the activity.
Hope that helps.
- Load More
@sbrajesh
Active 1 year ago