Search Results for 'buddypress'
-
AuthorSearch Results
-
July 6, 2010 at 12:17 pm #84425
In reply to: Where are the forums located?
Boone Gorges
KeymasterDepending on whether you’ve turned on the components at Dashboard > BuddyPress > Component Setup, BP provides extended user profiles, an interactive activity stream, private messaging, user-creatable groups (with integrated activity streams, forums, and other functionality available via plugins), blog tracking, friend connections, and member/group directories. The toolbar at the top of the screen is one of the methods built into the UI for accessing these features. If you’re using a BP-compatible theme like the bundled bp-default, then you should also see tabs for Members, Groups, Forums etc near the top of your screen.
testbp.org is one place to see BP being used (for test purposes, obviously, but you can get a sense of the organization).
July 6, 2010 at 11:58 am #84423Boone Gorges
KeymasterHow are you trying to delete the user? From the WP Dashboard? Does the problem persist when BuddyPress is turned off?
July 6, 2010 at 11:57 am #84422In reply to: Delete Account ends up with 404
Boone Gorges
KeymasterIf you’re experiencing problems deleting users via the WP user management panel, then it’s probably not strictly speaking a BuddyPress problem. You might try deactivating BP (deactivate BP-dependent plugins first!) for a moment, to see if you’re able to delete members with BP turned off. If not, then your problem is WordPress related.
July 6, 2010 at 11:55 am #84421In reply to: Displaying user profile
Boone Gorges
KeymasterThe strategy is this: Create a bp_has_members() loop, passing the user id along in the
includeparameter (see https://codex.buddypress.org/developer-docs/custom-buddypress-loops/the-members-loop/ for more details about the members loop). Then, inside of that loop, use the member header at buddypress/bp-themes/bp-default/members/single/member-header.php as a template for creating the friend link, message buttons, etc.July 6, 2010 at 11:45 am #84420In reply to: profile fields by id
Boone Gorges
KeymasterYes, you can do this with the xprofile template functions, which are located at buddypress/bp-xprofile/bp-xprofile-templatetags.php. Use the profile loops in buddypress/bp-themes/bp-default/members/single/profile/profile-loop.php as a template.
July 6, 2010 at 8:08 am #84413In reply to: RESOLVED: Crazy WordPress question
@mercime
Participant@BillboardFamily you’re welcome. Codex is your friend
https://codex.wordpress.org/ and https://codex.buddypress.org/home/July 6, 2010 at 7:41 am #84410In reply to: Here come the spammers!!!
foxly
ParticipantBasically, nothing happened.
I sense that there are some politics at play here, so I’m going to keep my head down. When spam becomes a problem on the sites I run, I’ll develop my own solution.
^F^
July 6, 2010 at 6:56 am #84409In reply to: CometChat – Facebook style chat for BuddyPress
r-a-y
KeymasterIt doesn’t use Comet technology… it’s just a name.
July 6, 2010 at 6:47 am #84407In reply to: Diaspora? What do you think?
July 6, 2010 at 6:46 am #84406In reply to: some people have trouble registering…
r-a-y
KeymasterSounds like your server is running on IIS.
If so, read this for a potential solution:
https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/http-404-file-not-found-in-ie-and-chrome/July 6, 2010 at 6:45 am #84405In reply to: Missing avatars with WP3.0 & BP1.2.5
Doug
Participant@r-a-y … I tried that full .htacess file and got a WSoD. I suspect something on the server side is causing the issue.
July 6, 2010 at 6:44 am #84404In reply to: Where are the forums located?
nickaster
Participantokay, I see. So, I have forums then, and they work just fine. But where is the buddypress magic? How does it change bbpress? My understanding is that buddypress will allow for much more interesting interaction between registered users that bbpress can’t do on it’s own. How do I get these features activated and working?
I can get it running and I wind up with a new toolbar on the top of my screen. Is that the point? Is that what buddypress really is? just a toolbar with some options to send messages to people?
July 6, 2010 at 6:37 am #84402In reply to: How to make a private community?
r-a-y
Keymasteris_feed() is what you’re looking for. However, I would use travel-junkie’s code as it’s cleaner:
https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/how-to-make-a-private-community/?topic_page=2&num=15#post-44616Modify this line:
if( bp_is_register_page() || bp_is_activation_page() )with:
if( bp_is_register_page() || bp_is_activation_page() || is_feed() )July 6, 2010 at 6:31 am #84401In reply to: how to access to bbpress admin from buddypress??
r-a-y
KeymasterIf you install standalone bbPress at example.com/forums/, then you need to tell BuddyPress to change their forum slug to something else. Otherwise, there is a slug collision.
This can be done by adding the following line in wp-config.php:
define ( ‘BP_FORUMS_SLUG’, ‘discussions’ );“discussions” can be changed to anything you desire. Now your BP group forums will reside at this new slug.
July 6, 2010 at 6:22 am #84399In reply to: how to access to bbpress admin from buddypress??
alanchrishughes
ParticipantI don’t know if those tutorials are out dated, but when like I said when I integrated the two the other day the buddypress groups just took them over. I’m obviously going to keep looking anyways hoping I screwed something up, but I don’t know.
July 6, 2010 at 5:54 am #84398In reply to: How to disable WP sidebar from all buddypress pages
Paul Wong-Gibbs
KeymasterAround where you include your sidebar.php, try something like this: http://buddypress.pastebin.com/1KeQHxEx
July 6, 2010 at 4:52 am #84396In reply to: Avatars aren’t shown after the upgrade
ronia
ParticipantI have made fresh, clean installs of WP 3 as multisite and Buddypress 1.2.5. While everything works OK avatars uploaded at BP are not shown in WP blog, blog comments etc
I posted a demo link at https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/how-to-show-bp-avatars-in-wordpress-blogs/
Does the demo version ay buddypress.og works okay with WP multisite blogs – is there any demo?
This bug is actually making Buddypress 1.2.5 unusable.July 6, 2010 at 3:57 am #84392In reply to: How to make a private community?
Pisanojm
ParticipantSeems like I could have added some kind of IF ~whatever the FEED function~ RETURN to the Registered Users Only 2 plugin and achieved the same thing… but I don’t know what the “whatever the FEED function” is to add… @r-a-y
July 6, 2010 at 3:54 am #84391In reply to: How to make a private community?
Pisanojm
Participant@r-a-y I used your code suggestion and some that I found in Restrict User 2 With Viper’s original Restrict User Plugin
Found here http://www.viper007bond.com/wordpress-plugins/registered-users-only/
because I wanted the site to be restricted to registered users only… still allow access to the login/activiate page and ALSO allow access to the feeds…I ended up with this.
// Depending on conditions, run an authentication check
function MaybeRedirect() {
// If the user is logged in, then abort
if ( current_user_can(‘read’) ) return;$settings = get_option( ‘registered-users-only’ );
// Feeds
if ( 1 == $settings && is_feed() ) return;// This is a base array of pages that will be EXCLUDED from being blocked
if ($bp&&($bp->current_component == BP_REGISTER_SLUG ))//buddypress
return;if ( bp_is_register_page() || bp_is_activation_page() || is_page(‘welcome’) ) //buddypress
return;$this->exclusions = array(
‘wp-login.php’,
‘wp-signup.php’,
‘wp-register.php’,
‘wp-activate.php’,
‘wp-cron.php’, // Just incase
‘wp-trackback.php’,
‘wp-app.php’,
‘xmlrpc.php’,
);
It appears to be working… Do you have any thoughts on the above? Thanks
July 6, 2010 at 1:22 am #84385In reply to: Deleting users generates fatal error
Nahum
ParticipantJuly 6, 2010 at 1:11 am #84382In reply to: Missing avatars with WP3.0 & BP1.2.5
Doug
ParticipantSo the wp-config.php hack found here does not work:
// BP AVATAR HACK
define('BP_AVATAR_URL','http://'.$_SERVER.'/wp-content/uploads');
define('BP_AVATAR_UPLOAD_PATH',$_SERVER.'/wp-content/uploads');
July 6, 2010 at 1:01 am #84381PJ
ParticipantThank you. I wasn’t sure but I’ll do that. It’s good to know that the forums are more organized than meets the eye.
July 6, 2010 at 12:59 am #84379In reply to: CometChat – Facebook style chat for BuddyPress
Mark
ParticipantIs this software based on true Comet technology or is it simply using the same name without actually using the actual Comet technology?
I ask because true Comet technology requires a server-side listener service, which isn’t possible with 99% of all hosting companies out there.
July 6, 2010 at 12:09 am #84377In reply to: Job Board / Post Resume plugin
paulhastings0
ParticipantAs far as I know I can’t remember a plugin that does that. Sorry. The best I know of would just be a forum. You might try checking out the modified Classified Ads plugin too.
July 5, 2010 at 11:55 pm #84375In reply to: Avatars aren’t shown after the upgrade
Ali Erkurt
Participant@r-a-y The second blog has another upload directory for itself. So it’s ok to have another blog. But what’s the problem with my root blog?
-
AuthorSearch Results