-
Marc Luther Capulong replied to the topic Get all xprofile select field options in the forum How-to & Troubleshooting 9 years, 4 months ago
Nevermind, found a way using this function
xprofile_get_field_id_from_name( $field_name )Thanks!
-
Marc Luther Capulong's profile was updated 9 years, 4 months ago
-
Peter Shilling started the topic Posts not visible in the editor in the forum Miscellaneous 9 years, 4 months ago
We have a strange problem happening with WordPress 4.7 and BuddyPress 2.7.3
In the WordPress dashboard you can see that there are 124 post published but none of the posts are visible. They’re fine in the front end of the site, just not visible in the editor.
Tried disabling plugins one by one, narrowed it down to BuddyPress. Disable that and the…[Read more]
-
Henry Wright updated the bp_after_setup_theme() page, on the BuddyPress Codex 9 years, 4 months ago
bp_after_setup_theme() is where BuddyPress loads the theme functions. If you want to filter actions in functions.php or buddypress-functions.php hook to bp_after_setup_theme().
-
Henry Wright replied to the topic Get all xprofile select field options in the forum How-to & Troubleshooting 9 years, 4 months ago
Hi @mlcapulong
If you know the field ID, you can do this:
$field = new BP_XProfile_Field( $field_id );
$children = $field->get_children();
if ( $children ) {
foreach ( $children as $child ) {
// Do something here.
// var_dump( $child );
}
} -
Lisa Resnick's profile was updated 9 years, 4 months ago
-
Henry Wright replied to the topic oEmbed video in site-wide activity in the forum How-to & Troubleshooting 9 years, 4 months ago
Thanks @danbp. I’ve added an example to the update you made.
-
Henry Wright updated the Embeds page, on the BuddyPress Codex 9 years, 4 months ago
Since BuddyPress 1.5, we have integrated WordPress’ native Embeds functionality.
So now it’s easy to embed videos, images, and other content into your Activity Stream, Group Forum, and Private Message […]
-
Henry Wright replied to the topic oEmbed video in site-wide activity in the forum How-to & Troubleshooting 9 years, 4 months ago
Update from the Trac ticket
BuddyPress uses a different hook name, but it should do the same thing. Try:
bp_embed_oembed_html.Thanks to @r-a-y for the info.
-
Duncan Ridgley started the topic BP Group Hierarchy – how to make it work with Buddypress 2.7 in the forum Installing BuddyPress 9 years, 4 months ago
I have a buddypress site built 4 years ago, and am using BP Group Hierarchy plugin. We updated the theme recently to https://seventhqueen.com/themes/kleo/ and buddypress to 2.7. All good, only the BP plugin, because its not been udates for 3 years works… but does not let new sub groups appear in the sub groups. So… does not work. So, what are…[Read more]
-
Jeff Chandler updated the Change Default Members Profile Landing Tab page, on the BuddyPress Codex 9 years, 5 months ago
By default, BuddyPress will load the Activity tab when clicking on a member’s profile link. If you would like to change this default landing tab to something else than the Activity tab you can do so.
Constants […]
-
Paul Wong-Gibbs replied to the topic Repeatable Field groups required in the forum How-to & Troubleshooting 9 years, 5 months ago
I looked into this a while ago. I don’t know if any plugins have provided it — if so, the code will be hacky — because achieving this requires changing some data storage we do in BuddyPress, which is a bit of a complicated issue to resolve well.
-
Paul Wong-Gibbs replied to the topic Fatal error PHP 7.1 in the forum Installing BuddyPress 9 years, 5 months ago
The situation is BuddyPress is incompatible with PHP 7.1 as things stand. One issue means a fix in BuddyPress (which we’ve already fixed, and will have out in a release soon, but probably after Christmas), and the other issue I’ve found (which BP sites have a realistic site of running into) require a fix in WordPress, which I hope that team will…[Read more]
-
Bruce started the topic Confirmation email for new user sends user to my landing page in the forum How-to & Troubleshooting 9 years, 5 months ago
WP 6.4.1
BP 2.7.3
twentythirteen -child
neighborsnation.orgWhen click on the Activation menu, nothing happens.
I searched for a fix and found one that was dated this year, but beyond my understanding and involved a lot of php.
I found another that seemed quite easy – copyinig a bit of php code into a functions.oho file, but it was dated 2014,…[Read more]
-
Peter Hardy-vanDoorn replied to the topic oEmbed video in site-wide activity in the forum How-to & Troubleshooting 9 years, 5 months ago
-
Henry Wright replied to the topic oEmbed video in site-wide activity in the forum How-to & Troubleshooting 9 years, 5 months ago
oEmbed is supported by BuddyPress but maybe the
embed_oembed_htmlWP filter isn’t used?Can you open a Trac ticket for this?
-
Peter Hardy-vanDoorn started the topic oEmbed video in site-wide activity in the forum How-to & Troubleshooting 9 years, 5 months ago
WP 4.7, BP 2.7.3.
I’m using a little bit of code from http://wpsites.org/how-to-make-oembed-videos-responsive-10520 to filter WordPress’s oEmbed to make YouTube videos responsive. Basically it hooks into the WP filter ’embed_oembed_html’ to add a container div.
It works a treat in forum topic views, but it isn’t working on the site-wide…[Read more]
-
Theodor Rehtisch replied to the topic Groups slug, members and behavior in the forum How-to & Troubleshooting 9 years, 5 months ago
Hello,
does anyone know what to do? I’m in a real pinch here. Any hint and suggestion might help.
-
Henry Wright replied to the topic Solution to "buddyblock" alternative in the forum How-to & Troubleshooting 9 years, 5 months ago
I can’t be sure without seeing your full code but going on the PHP warnings you are getting it looks like you are treating a string as an array.
Try replacing the 3 instances of
$slug['slug']with$slug -
Glenn replied to the topic Solution to "buddyblock" alternative in the forum How-to & Troubleshooting 9 years, 5 months ago
thanks so much for this, modemlooper – what i get from it is fantastic, but due to some custom tabs i’ve added in bp-profile it’s throwing a couple of errors before it gets to the output:
Warning: Illegal string offset ‘slug’ in /…/public_html/safeusername/wp-content/plugins/bp-custom.php on line 464
Warning: Illegal string offset ‘slug’ in…[Read more]
- Load More