-
Henry Wright replied to the topic Removing Xprofile fields in the forum Installing BuddyPress 10 years, 6 months ago
It doesn’t help if I directly delete the field in the database.
That’s really weird. If you delete something from a database, usually it’s gone permanently
-
Henry Wright replied to the topic Adding profile fields to members directory in the forum Creating & Extending 10 years, 6 months ago
Great to hear 🙂
Very cool yacht by the way! I’m going to visit my uncle’s this Thursday. It’s moored at Canvey Island while he does some restorations.
-
LeeBinder replied to the topic multiple duplicate member-to-member messages in the forum How-to & Troubleshooting 10 years, 6 months ago
Thank you, Shane. We can not switch the theme in the life site w/o a lot of reformatting.. Could try in the backup site, just for testing to figure out if the culprit might indeed be the theme..
A different approach would make us happier, though .. hmm..
-
tejaw ixule's profile was updated 10 years, 6 months ago
-
@mercime replied to the topic REGISTER PAGE, ACTIVATE PAGE, BOTH INVISIBLE in the forum Installing BuddyPress 10 years, 6 months ago
There is nothing on the page, where is the shortcode for the register page and activate page?
There is no shortcode. If you enabled registration after you set up BuddyPress, then follow instructions at https://codex.buddypress.org/getting-started/register-and-activation-pages/
After you do so, you’d need to log out first in order to “see” the…[Read more] -
@mercime replied to the topic Buddypress groups styles in the forum How-to & Troubleshooting 10 years, 6 months ago
Didn’t get notification for your mention, but thanks @danbp 🙂
-
@mercime replied to the topic Buddypress groups styles in the forum How-to & Troubleshooting 10 years, 6 months ago
For example, I changed the background of the home page to black, the group page also went black.
@jessicana That is the default behavior as BP adds rudimentary styles to the components in BP pages.
BP injects BP classes in the<body>tag. View > Source or use FF/Chrome inspector and you’ll find numerous classes e.g. in a Group named “The…[Read more] -
Henry Wright replied to the topic Adding profile fields to members directory in the forum Creating & Extending 10 years, 6 months ago
There’s 2 ways of doing this.
1. You could modify the members-loop template (see the BuddyPress Template Hierarchy for details on how that’s done). See here. You would just add
bp_member_profile_data( 'field=the field name here' );to the template.2. Add this to your theme’s functions.php file:
function add_info_to_members_loop() {[Read more]
echo… -
Henry Wright replied to the topic Can we use tags to show posts in group activity stream? in the forum How-to & Troubleshooting 10 years, 6 months ago
You can’t do that currently. The only way to add an item to the activity stream is with
bp_activity_add(). See the bp_activity_add() article for more details. -
manteli's profile was updated 10 years, 6 months ago
-
Diana K. Cury wrote a new post on the site BuddyPress Brasil 10 years, 6 months ago
BuddyPress 2.3.4O BuddyPress 2.3.4 já está disponÃvel. Esta é uma versão de manutenção e todas as instalações do BuddyPress são recomendados a atualizarem o mais rapid […]
-
Deventer '83's profile was updated 10 years, 6 months ago
-
thiclon's profile was updated 10 years, 6 months ago
-
kelin akazi's profile was updated 10 years, 6 months ago
-
buckyb replied to the topic Xprofile fields frontend editing in the forum How-to & Troubleshooting 10 years, 6 months ago
I think I’m close 🙂
I got the field I want to show up on my custom page, but I can’t figure out how to make it edit and submit the changes to the right group. Here’s what I’m using in my custom editing page:
<?php do_action( ‘bp_before_profile_edit_content’ );
if ( bp_has_profile( ‘profile_group_id=’ . bp_get_current_profile_group_id() ) )…[Read more]
-
thiclon's profile was updated 10 years, 6 months ago
-
buckyb replied to the topic Xprofile fields frontend editing in the forum How-to & Troubleshooting 10 years, 6 months ago
I’ve decided to try and put the fields in a separate custom editing page, and I’m searching for how to add each extended editable input xprofile field individually, with their id number. I think that will help solve the styling issue. I’ve been searching for something similar like this so I can see how to accomplish this, if anyone can suggest…[Read more]
-
Michael Bryner replied to the topic Hide Buddypress pages from google serch. in the forum Installing BuddyPress 10 years, 6 months ago
That list looks like it would keep people from sighing up and logging in. Em I wrong?
-
Henry Wright replied to the topic Custom Hook Help in the forum How-to & Troubleshooting 10 years, 6 months ago
Take a look at the source where the hook appears. See here. You should see
do_action( 'bp_after_registration_confirmed' );.This invokes all functions hooked to
bp_after_registration_confirmed. So for example:function test() {
// The code here will be run.
}
add_action( 'bp_after_registration_confirmed', 'test' );In this particular case,…[Read more]
-
Henry Wright replied to the topic Custom Hook Help in the forum How-to & Troubleshooting 10 years, 6 months ago
Can someone confirm if this code will ever be overwritten by an update to WordPress or BuddyPress?
Updating WordPress or BuddyPress won’t overwrite anything you have added to your theme, but updating your theme will do. The way around this is to create a Child Theme.
- Load More