-
Terence Hackett's profile was updated 9 years, 2 months ago
-
Qode Media's profile was updated 9 years, 2 months ago
-
Hugo Ashmore replied to the topic template overload isn't working as expected in the forum How-to & Troubleshooting 9 years, 2 months ago
I can do that. However, I haven’t found any documentation to that effect, and it seems to be much more complicated than the template hierarchy documentation implies:
Hmm I was 99.999% sure I had or we (r-a-y & I wrote the two main codex pages for template hierarchy) had explicitly mentioned this point about full templates but I c…[Read more]
-
Slava Abakumov replied to the topic BuddyPress Newsletter relaunched in the forum Miscellaneous 9 years, 2 months ago
Just sent a new issue!
BuddyPress Newsletter – #24 – BP security release, Community Hosting, BuddyApp Theme, BP with WooCommerce etc
-
McCage replied to the topic Username exposed on the profil in the forum Requests & Feedback 9 years, 2 months ago
I do not use Twitter. When I register for a WordPress website, I do not realize that the username will be revealed in BuddyPress. I prefer to see my username as part of the login secret and I think many of my BuddyPress friends will feel the same. I would like to see a setting that makes it possible to use the real name or the nickname on screen…[Read more]
-
Mozart Moraes started the topic Xprofile field – Dropdown list in the forum Creating & Extending 9 years, 2 months ago
Hi all
I would like to set in the dropdown list xprofile field a big amount of value to the field. Is it possible? Is there some plugin?
For exemple:
I created a field “company” and I have a list of all the company that the user can select (or if possible when user type some word, the field search suggest the company from the list value).
Then,…[Read more] -
Henry Wright replied to the topic Problem when i upload avatar in registration page. in the forum Third Party Plugins 9 years, 2 months ago
No need to edit the core file. The
bp_attachments_current_user_canfilter can be used here.add_filter( 'bp_attachments_current_user_can', function( $can, $capability ) {[Read more]
if ( 'edit_avatar' !== $capability ) {
return $can;
}
// This will let all users upload an avatar (not just logged in members).
$can =… -
Paresh Radadiya started the topic Reset BuddyPress WP_Query to single post type page in the forum How-to & Troubleshooting 9 years, 2 months ago
I’m trying to get group navigation menu items to show on single cutom post type page but am completely unsure how to approach the problem.
I’ve built my solution by setting current component and current group manually to be able to get group navigation tab items.
function boss_set_current_groups() {
global $bp;if ( is_…[Read more]
-
Muhammad Kashif replied to the topic How do I?? in the forum How-to & Troubleshooting 9 years, 2 months ago
you mean to see forums from groups the user is member of ?
-
Muhammad Kashif replied to the topic Search member's match profile on basis of other member profile field values in the forum Installing BuddyPress 9 years, 2 months ago
this may be a good start https://wordpress.org/plugins/match-me-for-buddypress/
-
Henry Wright replied to the topic Activity Custom Content After Post Iteration in the forum How-to & Troubleshooting 9 years, 2 months ago
How do I do that on the server side?
You’d use the modulo operator, like in my example above.
Did this work for you?
-
Henry Wright replied to the topic Activity Custom Content After Post Iteration in the forum How-to & Troubleshooting 9 years, 2 months ago
Ah, the “load more”. I forgot about that. In order to load your items (and activities) you’ll need to make an ajax request. In your server side processing script you can use the modulo operator to insert your items at every 5th iteration.
-
Henry Wright replied to the topic Activity Custom Content After Post Iteration in the forum How-to & Troubleshooting 9 years, 2 months ago
I’ve used Pastebin because there’s quite a lot of code to paste here. Notice my amendments on lines 34, 36, 37, 38 and 58.
Let me know if it works for you.
-
Henry Wright replied to the topic Activity Custom Content After Post Iteration in the forum How-to & Troubleshooting 9 years, 2 months ago
You’ll need to replace
// Loop startand// Loop endwith your actual loop. If you want to paste your loop here I’ll try to take a look -
Henry Wright replied to the topic Activity Custom Content After Post Iteration in the forum How-to & Troubleshooting 9 years, 2 months ago
You can use the modulo arithmetic operator. Here’s an example:
$counter = 1;
// Loop start
if ( 0 === $counter % 5 ) {
// Do something here.
}
$counter++
// Loop end -
Toni replied to the topic Registration page does not appear in the forum How-to & Troubleshooting 9 years, 2 months ago
Oh wow! Me too. Thank you for the question and answer.
-
Boone Gorges wrote a new post on the site BuddyPress.org 9 years, 2 months ago
BuddyPress 2.8.2 is now available. This is a security release. We strongly encourage all BuddyPress sites to upgrade as soon as possible.
BuddyPress 2.8.1 and earlier versions were affected by the following […]
-
Boone Gorges updated the Version 2.0.6 page, on the BuddyPress Codex 9 years, 2 months ago
Version 2.0.6 is a BuddyPress security release.
For Version 2.0.6, the database version (bp_db_version in wp_options) was 8311, and the Trac revision was r11507.
Fixes:
Improved nonce protection for some […]
-
Boone Gorges updated the Version 2.1.4 page, on the BuddyPress Codex 9 years, 2 months ago
Version 2.0.6 is a BuddyPress security release.
For Version 2.0.6, the database version (bp_db_version in wp_options) was 8311, and the Trac revision was r11506.
Fixes:
Improved nonce protection for some […]
-
Boone Gorges updated the Version 2.2.6 page, on the BuddyPress Codex 9 years, 2 months ago
Version 2.2.6 is a BuddyPress security release.
For Version 2.2.6, the database version (bp_db_version in wp_options) was 9181, and the Trac revision was r11505.
Fixes:
Improved nonce protection for some […]
- Load More