Search Results for 'buddypress'
-
AuthorSearch Results
-
July 20, 2009 at 2:12 am #49620
seangelica
ParticipantThat worked! Thanks again
July 20, 2009 at 1:49 am #49619In reply to: Private Network
peterverkooijen
ParticipantThere have been several threads about this, including some useful code, but also lots of loose ends and confusion:
Securing components from non logged in users
Make access members/groups sections members-only
Plugin to show components to registered Users only
Apparently a “full-featured privacy (authorization) component for BuddyPress” is in the works for a future release.
July 20, 2009 at 1:09 am #49618In reply to: FEATURES REQUEST Classifieds (Plugin)
grosbouff
ParticipantI dont’t know which features I’ll eventually add…
As said above, I’m not a professional coder and it is a challenge for me to finish this as it is

But it’s true, it’s a good idea. I’ll see later.
No widgets planned for the moment (only maybe things like last/random classifieds) and plan to make it different from the others as it is completely build on BuddyPress, with its code & features (notifications, member screens vs site screens, etc).
It will not be a WPMU plugin but a BuddyPress component…
July 19, 2009 at 8:54 pm #49613seangelica
Participantboy you guys sure are rough on a noob… ofcourse I meant 1.0.3, it was late…

Thanks Mariusooms. I will give it a try. I thought it had something to do with my server, but was not sure where.
Thanks
July 19, 2009 at 8:04 pm #49612Mariusooms
Participant…but it was when 2.8.2 just came out and no BP 3.0.1 release?
He means BP 1.0.3 I would imagine. That error has to do with your memory limit in your php.ini. Try adjusting it to 96M.
July 19, 2009 at 7:56 pm #49610In reply to: Change Avatar Sizes/ Presets for Avatar Cropping
Mariusooms
ParticipantTake a look at the first few lines of file bp-core-avatars.php in the plugins/buddypress/bp-core directory.
/* Define settings for avatars. [TODO] This will eventually end up as admin configurable settings */
define( 'CORE_AVATAR_V1_W', apply_filters( 'bp_core_avatar_v1_w', 50 ) );
define( 'CORE_AVATAR_V1_H', apply_filters( 'bp_core_avatar_v1_h', 50 ) );
define( 'CORE_AVATAR_V2_W', apply_filters( 'bp_core_avatar_v2_w', 150 ) );
define( 'CORE_AVATAR_V2_H', apply_filters( 'bp_core_avatar_v2_h', 150 ) );Currently they are not admin configurable yet, so keep not of the changes you make.
July 19, 2009 at 6:50 pm #49609In reply to: Plugin could not be activated… WP 2.8.1
Jeff Sayre
ParticipantDid you try moving the themes to their proper locations and then try reactivating?
This can happen to some people when they do not have the themes moved out from under the /buddypress/ directory. It happens to me each time I upgrade BP and do not move the themes. For most people, however, this does not cause any issues.
July 19, 2009 at 6:03 pm #49608José M. Villar
ParticipantHey, is BP version 3 out ?
July 19, 2009 at 3:50 pm #49603In reply to: Settings Page Template File – Please?!
Alex
ParticipantThe only change I’m actually going to propose is this:
function bp_core_screen_general_settings_content() {
global $bp, $current_user, $bp_settings_updated, $pass_error; ?>
<?php if ( $bp_settings_updated && !$pass_error ) { ?>
<div id="message" class="updated fade">
<p><?php _e( 'Changes Saved.', 'buddypress' ) ?></p>
</div>
<?php } ?>
<?php if ( $pass_error && !$bp_settings_updated ) { ?>
<div id="message" class="error fade">
<p><?php _e( 'Your passwords did not match', 'buddypress' ) ?></p>
</div>
<?php } ?>
<form action="<?php echo $bp->loggedin_user->domain . 'settings/general' ?>" method="post" id="settings-form">
<p>
<ul>
<li><label for="email" class="settings-label"><?php _e( 'Account Email', 'buddypress' ) ?></label> <input type="text" name="email" id="email" value="<?php echo attribute_escape( $current_user->user_email ); ?>" class="settings-input" /></li>
<li><label for="pass1" class="settings-label"><?php _e( 'Change Password <span>(leave blank for no change)</span>', 'buddypress' ) ?></label> <input type="password" name="pass1" id="pass1" size="16" value="" class="settings-input small" /></li>
<li><label for="pass2" class="settings-label"><?php _e( 'Repeat Password <span>(leave blank for no change)</span>', 'buddypress' ) ?></label> <input type="password" name="pass2" id="pass2" size="16" value="" class="settings-input small" /></li>
</ul>
</p>
<p class="submit"><input type="submit" name="submit" value="<?php _e( 'Save Changes', 'buddypress' ) ?>" id="submit" class="auto"/></p>
<?php wp_nonce_field('bp_settings_general') ?>
</form>
<?php
}If I can’t get this in core, how can I make sure these HTML changes persist after upgrades? Can I make a small plugin to do this?! I’m a real PHP n00b…
July 19, 2009 at 2:55 pm #49600In reply to: Permalinks not working with Buddypress
Jeff Sayre
ParticipantRead this (especially the section on %category%): https://codex.wordpress.org/Using_Permalinks#Using_only_.25postname.25
July 19, 2009 at 2:53 pm #49599In reply to: Hiding certain widgets?
Jeff Sayre
ParticipantWell, you could either delete them from BuddyPress core (not a good idea), or unregister them in your theme’s functions.php file.
https://codex.wordpress.org/WordPress_Widgets_Api/unregister_sidebar_widget
July 19, 2009 at 2:46 pm #49597In reply to: BP specific conditional tags
Jeff Sayre
ParticipantLisa-
The BuddyPress codex is in its infancy. But, there are a few gems you can glean.
https://codex.buddypress.org/developer-docs/custom-buddypress-loops/
Also, look in each of the component folders of the core BP files for a bp-xxx-templatetags.php file. You will find tags that you can directly use within your theme templates.
July 19, 2009 at 2:37 pm #49595In reply to: Where can I get the theme used on buddypress.org?
July 19, 2009 at 2:24 pm #49594In reply to: up date of bp was a fail
Jeff Sayre
ParticipantDo not install WPMU using SimpleScripts. Instead, you should manually install WPMU.
https://buddypress.org/forums/topic/404-error-in-front-page-please-help#post-16777
July 19, 2009 at 2:20 pm #49592In reply to: Unable to log in
Jeff Sayre
ParticipantJuly 19, 2009 at 2:17 pm #49591In reply to: Class 'WP_Widget' not found
Jeff Sayre
ParticipantWhich version of WordPress Mu are you running? Which version of BuddyPress?
July 19, 2009 at 1:13 pm #49590gpo1
ParticipantAny update on this?
July 19, 2009 at 1:12 pm #49589In reply to: New BP Chat plugin for Buddypress
gpo1
Participant@M, Please can you extend your twitter plugin with a page for user’s followers tweets & avatar?
July 19, 2009 at 3:54 am #49587takuya
Participantbp is still in version 1. Version 3 comes like… two years later!?
July 19, 2009 at 3:03 am #49586In reply to: BuddyBar for bbPress
John James Jacoby
KeymasterNot sure Nicholaszen. Since there’s a lot of activity going on with BuddyPress patches and MU changes, I’m going to hold off chasing any ghosts on this plugin until the next stable versions come out.
I’m keeping an eye on this daily so I’m still supporting it, but there won’t be a new version until the next versions of MU and BP come out, unless any major flaws or bugs are uncovered.
July 18, 2009 at 9:21 pm #49582In reply to: Site Wide Activity Widget Question
3469857
InactiveBuddyPress 1.0.3 site wide activity “commented on the blog post” date not shown. Anyone encountered? I installed in localhost.localdomain via xampp. Help me to fix.
July 18, 2009 at 9:04 pm #49581In reply to: BuddyPress, WPMU , & BBPress Cookie Issues
nnewell
Participantfound this..http://umwblogs.org/wiki/index.php/Integrating_WPMu,_BuddyPress,_and_bbPress
solved all my problems!
July 18, 2009 at 7:27 pm #49579In reply to: Where can I get the theme used on buddypress.org?
Decisionc
Participantthanks.
I tried searching for the answer to the question but couldn’t find it.
July 18, 2009 at 5:55 pm #49577In reply to: up date of bp was a fail
Andy Peatling
KeymasterAs per the instructions, you must be running WordPress MU 2.8.1 for BuddyPress 1.0.3 to work.
July 18, 2009 at 5:48 pm #49576In reply to: How to use full name, first name + last name
peterverkooijen
ParticipantThe cleanest way to get separate firstname and lastname into the database seems to be to
1. split the input from Buddypress’ fullname field using xprofile_sync_wp_profile()
2. make a two or more part name in fullname required
How would I do that? Can someone please help, because this would solve a major structural problem in Buddypress imho.
I need to come up with a solution, because integration with most mailing lists depends on having firstname and lastname stored somewhere.
Alternatively I have to use fullname for firstname and create a second custom xprofile field for lastname. That solution will problably cause lots of problems further down the line.
-
AuthorSearch Results