-
Henry Wright updated the BuddyPress Codex page, on the BuddyPress Codex 11 months, 1 week ago
We are currently working on a documentation reboot, here’s the new home of the best accurate docs (WIP). You’re very welcome to contribute to it. Welcome to the BuddyPress Codex, the online manual for […]
-
Henry Wright replied to the topic How to recreate Activation page? in the forum How-to & Troubleshooting 5 years, 2 months ago
You should be able to create the page yourself. If you go to Pages in wp-admin you can use the Add New button like you would do if you were creating a standard page.
-
Henry Wright updated the Getting Started page, on the BuddyPress Codex 5 years, 5 months ago
Welcome to BuddyPress! This section will help you set up your new BuddyPress-powered site as Super/Site Administrator: installing and configuring your settings to managing users, groups, activity streams and other […]
-
Henry Wright replied to the topic Filter the Activity Loop for Specific User Updates in the forum How-to & Troubleshooting 5 years, 5 months ago
Try
using bp_parse_args()
. Here is an example:`
function my_filter_after_has_activities_parse_args( $r ) {
$r[‘per_page’] = 3;
// Do something else here
return $r;
}
add_filter( ‘bp_after_has_activities_parse_args’, ‘my_filter_after_has_activities_parse_args’ );
`
See…[Read more]
-
Henry Wright replied to the topic How good and customizable is BuddyPress for building a songslyrics styled site? in the forum Installing BuddyPress 5 years, 11 months ago
BuddyPress is easily extended. If you look through the code you will see a lot of action and filter hooks. Also the template hierarchy will let you override core templates. It is a very developer friendly and support here in the forum is the best 😀
-
Henry Wright replied to the topic Why ajax not working on profile tabs? in the forum Miscellaneous 6 years, 1 month ago
You will need to ask the author of your theme and plugins.
-
Henry Wright replied to the topic Why ajax not working on profile tabs? in the forum Miscellaneous 6 years, 1 month ago
If you aren’t modifying the templates then check your theme or plugins in case they are modifying them. It is likely that something has changed and that change has introduced the issue.
-
Henry Wright replied to the topic Why ajax not working on profile tabs? in the forum Miscellaneous 6 years, 1 month ago
The script may use certain IDs or classes in the DOM and if you have modified the template then the AJAX request may not work as expected. Try again using a fresh copy of BuddyPress to see if the problem continues to happen
-
Henry Wright replied to the topic Log-In Link on Activate Your Account Page shows html characters in the forum Installing BuddyPress 6 years, 4 months ago
Trac is the best place to report bugs. See https://buddypress.trac.wordpress.org/
You can use the same username and password you use here in the forum.
-
Henry Wright replied to the topic how to change names in the profile menu in the forum How-to & Troubleshooting 6 years, 4 months ago
-
Henry Wright replied to the topic Bug in pluginsbuddypressbp-groupsbp-groups-template.php in the forum Installing BuddyPress 6 years, 4 months ago
You can report issues on Trac at https://buddypress.trac.wordpress.org/
The username and password you use here should work.
-
Henry Wright replied to the topic BuddyPress Customization Capabilities in the forum Miscellaneous 6 years, 4 months ago
BuddyPress can’t do this out of the box but it is very developer friendly. If you are comfortable with PHP and JavaScript you could extend to add this custom functionality.
-
Henry Wright replied to the topic How to add extended profile fields in Member Profile Header in the forum How-to & Troubleshooting 6 years, 4 months ago
Check out the “Displaying Extended Profile Fields on Member Profiles” article
-
Henry Wright replied to the topic import WP_members in the forum How-to & Troubleshooting 6 years, 4 months ago
You can access that data with
get_user_meta()
. For example:$address = get_user_meta( bp_displayed_user_id(), 'address', true );
echo $address; -
Henry Wright replied to the topic import WP_members in the forum How-to & Troubleshooting 6 years, 4 months ago
BuddyPress members are the same as WordPress users as far as the database is concerned. They are all saved in the
wp_users
table. -
Henry Wright replied to the topic Add `border-radius` to div as common style? in the forum Installing BuddyPress 6 years, 4 months ago
See here for information on the
border-radius
CSS property: https://developer.mozilla.org/en-US/docs/Web/CSS/border-radius -
Henry Wright replied to the topic BuddyPress Button Change in the forum Installing BuddyPress 6 years, 4 months ago
You can add CSS to your child them’s style.css file. That is the usual place to add your declarations.
-
Henry Wright replied to the topic bp_core_remove_nav_item not working in the forum How-to & Troubleshooting 6 years, 5 months ago
I can’t find
bp_activity_setup_nav
in the current codebase. Hooking tobp_init
instead should work.bp_core_remove_nav_item()
will delete an item from the primary navigation of the specified component.bp_core_remove_subnav_item()
will delete an item from the secondary navigation of the specified component.Hope this helps.
-
Henry Wright replied to the topic GDPR compliance in the forum Requests & Feedback 6 years, 5 months ago
Good to see you’ve made something available to help with GDPR @buddyboss.
-
Henry Wright replied to the topic Little bug on Nouveau profile menu in the forum Installing BuddyPress 6 years, 5 months ago
The “Articles” tab isn’t something that BuddyPress adds. If the count isn’t compatible with Nouveau then I suggest you let the plugin author know at https://wordpress.org/support/plugin/social-articles
- Load More
@henrywright
Active 8 months, 1 week ago