-
Varun Dubey replied to the topic Help with labels in the forum How-to & Troubleshooting 9 months, 2 weeks ago
You can use the WordPress gettext filter.
This filter allows you to intercept and modify text before it’s displayed on the page. Here’s an example of how you can use it to change a specific string in BuddyPress:
/**
[Read more]
* Translates specific strings in BuddyPress to new values.
* This function hooks into the 'gettext' filter provided by… -
Varun Dubey replied to the topic Buddypress don't genere member page in the forum Installing BuddyPress 9 months, 3 weeks ago
Buddypress: v2.6.9 ?
the current version is 12.2.0
-
Varun Dubey replied to the topic Set activity stream to show excerpt only and thumbnails in the forum How-to & Troubleshooting 9 months, 3 weeks ago
@rodrigolzd, try this: https://wordpress.org/plugins/bp-activity-filter. You can disable a certain type of activity posting. This feature will only be effective on new activities, and will not remove existing ones. For example, when someone adds you as a friend or registers on the community.
-
Varun Dubey replied to the topic Unexpected behaviour with Friends List default sorting in the forum How-to & Troubleshooting 9 months, 3 weeks ago
@yatesa01 If this is a fresh installation, you can choose to keep the BuddyPress Classic plugin deactivated. This plugin is designed to provide support for legacy versions of the BP plugin that have not been updated or if you have custom development that uses deprecated codes.
-
Varun Dubey replied to the topic Is BuddyPress compatible with Ultimate Member? in the forum Third Party Plugins 9 months, 3 weeks ago
@jerrythemouse https://wordpress.org/plugins/mailpoet-paid-memberships-pro-add-on works fine with Mailpoet 3.
There is no specific limitation from Paid Membership Pro I have seen upto so far where it limits you to fetch registered user email and sync it to any 3rd party integration.
-
Varun Dubey replied to the topic How do you edit buddypress form? in the forum Installing BuddyPress 9 months, 3 weeks ago
@erisf it’s more like template driven; you can add additional fields to the registration field
You can find the ref for template override here https://codex.buddypress.org/themes/theme-compatibility-1-7/template-hierarchy/Will suggest checking for BuddyPress themes to…[Read more]
-
Varun Dubey replied to the topic BP-12. – BP Classic in the forum Installing BuddyPress 9 months, 3 weeks ago
@giszech, you can protect them using a custom post-type approach instead of pages.
inside the restriction section, you will find a new option inside the dropdown
like Post, Pages, BuddyPress Directories -
Varun Dubey replied to the topic How up to date is the Codex Documentation? in the forum Creating & Extending 9 months, 3 weeks ago
New document preparation is in progress: https://github.com/buddypress/buddypress/tree/master/docs/developer.
-
Varun Dubey replied to the topic New post not visible until refreshed from browser. in the forum How-to & Troubleshooting 9 months, 3 weeks ago
Please make sure you have enabled the following option for BuddyPress Settings >> Options.
Activity auto-refresh >> Automatically check for new items while viewing the activity stream -
Varun Dubey replied to the topic Is BuddyPress compatible with Ultimate Member? in the forum Third Party Plugins 9 months, 3 weeks ago
@jerrythemouse To add a membership layer, you can use Paid Membership Pro, which also comes with a BuddyPress addon.
Paid Memberships Pro – Content Restriction, User Registration, & Paid Subscriptions
-
Varun Dubey replied to the topic BP-12. – BP Classic in the forum Installing BuddyPress 9 months, 3 weeks ago
@giszech Delete old BuddyPress pages with “under construction” subtitle to avoid conflicts with the new setup after activating BP Classic. You can deactivate BP Classic after that.
in BP v12, these pages are not required anymore. -
Varun Dubey replied to the topic How to disable the member (directory) page? in the forum How-to & Troubleshooting 9 months, 4 weeks ago
@jchretien
Replace ‘your_member_type’ with the actual slug of your desired member type.function wbcom_custom_bp_members_filter($args) {
[Read more]
// Only apply the filter for non-admin users
if (!current_user_can('manage_options')) {
// Specify the member type you want to display
$desired_member_type = 'your_member_type';… -
Varun Dubey replied to the topic BuddyPress Profile Edit in the forum How-to & Troubleshooting 9 months, 4 weeks ago
Possible caching issue.
You can check these docs, WP Fields can be used as xProfile fields https://bpdevel.wordpress.com/tag/wordpress/
-
Varun Dubey replied to the topic Buddypress and Restrict Content Pro Membership in the forum How-to & Troubleshooting 9 months, 4 weeks ago
You can use the following code snippet to create a new tab to display at BuddyPress Profile.
// Function to add a custom tab for Membership Details in the BuddyPress profile
function wbcom_rcp_buddypress_add_membership_tab() {
global $bp;// Define a new navigation item for the BuddyPress profile menu…[Read more]
-
Varun Dubey replied to the topic Profile picture issue in the forum How-to & Troubleshooting 9 months, 4 weeks ago
@fourbfb you can try to debug with the following steps.
1- Temporarily deactivate other plugins to rule out conflicts, as another plugin might interfere with BuddyPress’s upload functionality.
2- Switch to a default WordPress theme like Twenty Twenty to check if the issue is theme-related.
3- Verify PHP settings such as upload_max_filesize and…[Read more] -
Varun Dubey replied to the topic Is BuddyPress compatible with Ultimate Member? in the forum Third Party Plugins 10 months ago
Either Ultimate Member or BuddyPress; you can not use both together.
-
Varun Dubey replied to the topic Activity 'Load More' strange behaviour in the forum How-to & Troubleshooting 10 months ago
🙂 Depending on your website’s plugins, theme, and any custom BuddyPress codes. BuddyX is ready for BPv12+ it does not need BP Classic. All our plugins are also ready for BPv12+.
-
Varun Dubey replied to the topic Activity 'Load More' strange behaviour in the forum How-to & Troubleshooting 10 months ago
Hi @johnsimpson64, the latest version of BP (v12.2.0) was released yesterday. You can give it a try and test it again. At my end, I wasn’t able to replicate the issue you were facing with the “load more” feature – it seems to be working fine. However, I suggest that you try deactivating all custom codes related to BP and other BP plugins on your…[Read more]
-
Varun Dubey replied to the topic `bp_messages_star_set_action` utilizes `bp_displayed_user_id`, not correct? in the forum Miscellaneous 10 months ago
@thesun2012 bp_legacy_theme_ajax_messages_star_handler is not mandatory; you can also create your custom handler based on it
for example
function wbcom_custom_buddypress_ajax_handler() {
check_ajax_referer('custom-bp-ajax-nonce', 'security');$displayed_user_id = isset($_POST['displayed_user_id']) && !empty($_POST['displayed_user_id'])…[Read more]
-
Varun Dubey replied to the topic `bp_messages_star_set_action` utilizes `bp_displayed_user_id`, not correct? in the forum Miscellaneous 10 months ago
@thesun2012 Use bp_loggedin_user_id() to tie the action of starring or unstarring a message to the user logged in and performing the action. This function returns the ID of the user who is currently logged into the site. When a user is viewing their profile, both bp_displayed_user_id() and bp_loggedin_user_id() will return the same user ID, as the…[Read more]
- Load More
@vapvarun
Active 1 month ago