-
Prashant Singh replied to the topic Disable Member page to non-logged in users in the forum Requests & Feedback 6 years, 2 months ago
-
Prashant Singh replied to the topic Where do I find this text….so I can change it!? in the forum Creating & Extending 6 years, 2 months ago
Thanks 🙂
-
Prashant Singh replied to the topic Network rgistretion in the forum Requests & Feedback 6 years, 2 months ago
Hi,
Please confirm, have you assigned this page in BuddyPress page settings?
Thanks
-
Prashant Singh replied to the topic Site won't load after updating to 3.2.0 in the forum How-to & Troubleshooting 6 years, 2 months ago
Hi,
Please enable wp-debug in wp-config file and see the detailed error. It seems like theme is not compatible with the version that’s why it is happening.
Thanks
-
Prashant Singh replied to the topic Widgets / sidebar issue in the forum How-to & Troubleshooting 6 years, 2 months ago
Hi,
Can you check with the default theme? If it works with that then I think it’s your theme’s issue otherwise it is supposed to be not there and should be applied by theme settings only.
Thanks
-
Prashant Singh replied to the topic Where do I find this text….so I can change it!? in the forum Creating & Extending 6 years, 2 months ago
Hi,
You can use this plugin https://wordpress.org/plugins/string-locator/ and search for your string. If it is in the template then this plugin will list you all the templates having that string.
Thanks
-
Prashant Singh replied to the topic After Upgrade No Inbox or Sent Box in the forum How-to & Troubleshooting 6 years, 2 months ago
Hi,
Please check if the private messaging component is enabled there or not.
Thanks
-
Prashant Singh replied to the topic How to redirect user to their Buddypress profile in the forum How-to & Troubleshooting 6 years, 2 months ago
That’s great 🙂
-
Prashant Singh replied to the topic After updating the BuddyPress plugin, the account activation link does not work in the forum How-to & Troubleshooting 6 years, 2 months ago
That’s great 🙂
-
Prashant Singh replied to the topic Changing Avatar based on field data in the forum Creating & Extending 6 years, 2 months ago
Hi,
There is a filter code already written to modify this:
return apply_filters( 'bp_get_activity_avatar', bp_core_fetch_avatar( array(
'item_id' => $item_id,
'object' => $object,
'type' => $type,
'alt' => $alt,
'class' => $class,
'width' => $width,
'height' => $height,
'email' => $email
) ) );You can…[Read more]
-
Prashant Singh replied to the topic Widgets / sidebar issue in the forum How-to & Troubleshooting 6 years, 2 months ago
Hi,
Please check if you have the option to set sidebar on the member directory page.
Please go to pages and find the page members and check if you can assign a sidebar there.
Thanks
-
Prashant Singh replied to the topic My activity group and user avatar links issue in the forum How-to & Troubleshooting 6 years, 2 months ago
Hi,
You have to do it something like this:
add_filter('bp_get_activity_action','ps_remove_avatar_activity',10,1);
function ps_remove_avatar_activity($args){
//Write your code here
}Thanks
-
Prashant Singh replied to the topic Admin notifications in the forum Installing BuddyPress 6 years, 2 months ago
-
Prashant Singh replied to the topic After updating the BuddyPress plugin, the account activation link does not work in the forum How-to & Troubleshooting 6 years, 2 months ago
Hi,
Please check if it is working fine with legacy template if yes then it is a possible bug of new template.
Thanks
-
Prashant Singh replied to the topic How to redirect user to their Buddypress profile in the forum How-to & Troubleshooting 6 years, 2 months ago
Hi,
Please paste the following code snippet in child theme’s functions.php or bp-custom.php
function ps_redirect_profile() {
[Read more]
if(is_user_logged_in()){
if(is_page('your_page_slug'))
{
wp_redirect( bp_core_get_user_domain( get_current_user_id() ));
exit;
}
}
}
add_action( 'wp', 'ps_redirect_profile'… -
Prashant Singh replied to the topic Plugin to give user limited/no rights in the forum Third Party Plugins 6 years, 2 months ago
Welcome 🙂
-
Prashant Singh replied to the topic Activity Stream….attach pictures — normal? in the forum How-to & Troubleshooting 6 years, 2 months ago
Hi,
The plugin works fine for me. Anyways, you can find all the bbpress shortcodes here: https://codex.bbpress.org/features/shortcodes/.For you
this should work.
Thanks
-
Prashant Singh replied to the topic Add content into new Item menu in the forum How-to & Troubleshooting 6 years, 2 months ago
Hi,
Please check this thread: https://buddypress.org/support/topic/how-to-show-sitewide-activity-in-profile-page/
And try to use that activity loop.
Thanks
-
Prashant Singh replied to the topic Changing Avatar based on field data in the forum Creating & Extending 6 years, 2 months ago
Yes, it seems so. bp-custom.php is a file that resides in your WordPress ‘plugins’ folder, I think you have created that in BuddyPress folder. Please put that in the plugins folder.
- Load More
@prashantvatsh
Active 3 months, 3 weeks ago