-
Varun Dubey replied to the topic Unable to Join Groups – Button Click Does Nothing in the forum How-to & Troubleshooting 2 months ago
@kokiri, these are your demo groups created using a plugin or imported data, or are they newly created groups manually?
-
Varun Dubey replied to the topic Trouble with translation in the forum How-to & Troubleshooting 2 months, 1 week ago
@adjunkten you can find pot file inside BuddyPress plugin language folder and to sync you also also use poedit tool
-
Varun Dubey replied to the topic How can I Change the Group Slug in the forum How-to & Troubleshooting 2 months, 1 week ago
You can change it from BuddyPress Url Setting https://tinyurl.com/24shwf9b
-
Varun Dubey replied to the topic Blurry Avatar and Cover Images in the forum How-to & Troubleshooting 3 months, 3 weeks ago
@whyknott @thinlizzie avatar and cover images are not included as media attachments; the thumbnail generator plugins will not affect them. Avatar and cover image cropping are done when uploaded; any custom script will work only for new uploads.
-
Varun Dubey replied to the topic BP user @mention in the forum Requests & Feedback 4 months ago
Implement a debounce function to delay AJAX requests until the user has stopped typing for a specified duration. This will reduce the number of requests and improve responsiveness. The debounced function can be added to the input event in the “What’s new” section of the BuddyPress activity…[Read more]
-
Varun Dubey replied to the topic Groups type not working in the forum How-to & Troubleshooting 4 months ago
@traqbar It seems to be working fine. Try debugging using the default theme and only BuddyPress to find which plugin is causing the issue.
-
Varun Dubey replied to the topic Website error in the forum Installing BuddyPress 4 months, 1 week ago
@garymorris, contact your BeSocial theme support to fix the issue.
-
Varun Dubey replied to the topic Custom Development in the forum Creating & Extending 4 months, 4 weeks ago
First, ensure that BuddyPress is loaded and initialized before your plugin tries to call its functions. Since BuddyPress hooks its initialization to WordPress
bp_init
action, which typically fires on wp or init at a priority of 10, you should ensure your hook runs after this or directly onbp_init
with a lower priority (higher number).You can…[Read more]
-
Varun Dubey replied to the topic Custom Development in the forum Creating & Extending 4 months, 4 weeks ago
Ensure the BuddyPress plugin is active and add custom code in child theme functions.php or a custom plugin or using the code snippet plugin. xprofile_get_field_data is a valid function https://hooks.wbcomdesigns.com/reference/functions/xprofile_get_field_data/
-
Varun Dubey replied to the topic Custom Development in the forum Creating & Extending 4 months, 4 weeks ago
@mattdotnet BuddyPress does not save profile field values inside the user meta
you can fetch them using the following approach and sync them with your requirement$field_name_gender = 'Gender'; // Replace with your actual xProfile field name
$field_name_location = 'Location'; // Replace with your actual xProfile field name// Get…[Read more]
-
Varun Dubey replied to the topic No way of banning users? in the forum How-to & Troubleshooting 4 months, 4 weeks ago
-
Varun Dubey replied to the topic Plugin installation failed in the forum Installing BuddyPress 5 months, 2 weeks ago
@frankferr BuddyX is a theme, not a plugin. Add it to the ‘Add New Theme’ section.
-
Varun Dubey replied to the topic Group Forum Bug in the forum How-to & Troubleshooting 7 months ago
@planetearthlings You can delete those forums from the backend dashboard
All forums get listed under Forums menus. -
Varun Dubey replied to the topic Group functions triggering deprecation notice? in the forum How-to & Troubleshooting 7 months, 2 weeks ago
@johndawson155, please follow the steps to deactivate other BP-related plugins at your staging. It’s possible that one of your active plugins contains deprecated code.
-
Varun Dubey replied to the topic BuddyPress custom plugin in the forum Creating & Extending 7 months, 2 weeks ago
@hajnalmadar we already have a plugin for it https://wbcomdesigns.com/downloads/buddypress-private-community-pro/ please checkout our support they will give you sandbox link to test it.
-
Varun Dubey replied to the topic Sidebar not on members page in the forum How-to & Troubleshooting 8 months, 1 week ago
@werny check with your theme support
-
Varun Dubey replied to the topic How to fix Broken Themes when i set it as a child theme in the forum How-to & Troubleshooting 8 months, 1 week ago
@mervyntsao make sure to upload and activate the child theme after installing the parent theme.
-
Varun Dubey replied to the topic Templating in Buddypress 12.x in the forum How-to & Troubleshooting 8 months, 4 weeks ago
@scordisian BP pages are not standard post-loop
to understand the flow, you can child template files for BuddyPress
You can find them inside the BuddydPress plugin at the following path
buddypress/bp-templates/bp-nouveau
You can modify all of these templates by using a child theme. -
Varun Dubey replied to the topic Hi~Any way to edit generated URLs or Pages in the forum How-to & Troubleshooting 8 months, 4 weeks ago
@mervyntsao These are template-driven pages; if you have to modify them, you need to override template files inside the child theme and then make your changes
For legacy
buddypress/bp-templates/bp-legacy/buddypress/members/
for Nouveau
buddypress/bp-templates/bp-nouveau/buddypress/memberscan be overridden inside the child…[Read more]
-
Varun Dubey replied to the topic no forum displaying & strange URL in the forum Installing BuddyPress 8 months, 4 weeks ago
@boomer68 check your permalink setting once, ideally,
it should be
Single Forums domain.com/forums/forum/single-forum-slug
Single Topic domain.com/forums/topic/single-topic-slug - Load More
@vapvarun
Active 1 month ago