Search Results for 'buddypress'
-
AuthorSearch Results
-
December 9, 2009 at 12:08 pm #58329
In reply to: How to change built in BuddyPress verbiage
Paul Wong-Gibbs
KeymasterPoedit is the buggiest bit of Mac software I’ve ever used.
December 9, 2009 at 12:02 pm #58328In reply to: How to change built in BuddyPress verbiage
jamesyeah
ParticipantHmm I changed some stuff in Poedit and uploaded both files mo/po to bp-languages but it didn’t change anything, am I missing anything?
December 9, 2009 at 10:48 am #58325In reply to: New BuddyPress 1.2 default theme
PH (porsche)
ParticipantLOL
roger that!
still very excited to get BP1.2 in my hands.. besides Nicola says that his aggregator plugin will work on BP1.2 \
woot woot
December 9, 2009 at 10:16 am #58322In reply to: New BuddyPress 1.2 default theme
Paul Wong-Gibbs
KeymasterThe above “it is not a BP issue” thing has, I think, been discussed before. If anyone wishes to debate that point further, make a new thread – leave it out of this one.
December 9, 2009 at 10:10 am #58321In reply to: Adding a Blog
Paul Wong-Gibbs
KeymasterPlease would you answer https://buddypress.org/forums/topic/when-asking-for-support ? Thanks
December 9, 2009 at 9:53 am #58320In reply to: New BuddyPress 1.2 default theme
PH (porsche)
Participant@Bpisimone , et, all..
i love the default answer of: “its not a BP issue, its a wp or wpmu issue” — i see that thrown around here way too often.
first, –i get it.. “..its outside the scope…” but the default.. “go elsewhere” as an answer just makes me cringe..
second, — please consider that.. to many enduser-installers (not a developer)of BP.. such as myself… to us, BP is the main product and NOT just a plugin. –and WP/WPMU is just an afterthought…
thanks…
December 9, 2009 at 5:16 am #58311In reply to: [Resolved] BuddyPress Codex Down
John James Jacoby
KeymasterAnd it’s all better.
December 9, 2009 at 5:16 am #58310In reply to: New BuddyPress 1.2 default theme
Andy Peatling
KeymasterThere are a lot of changes to template structure, all for the better.
December 9, 2009 at 5:12 am #58309In reply to: [Resolved] BuddyPress Codex Down
John James Jacoby
KeymasterChecking it out now…
December 9, 2009 at 5:08 am #58307In reply to: How to change built in BuddyPress verbiage
John James Jacoby
Keymaster@cecilporter, same rules still apply. Don’t forget to save your po/mo’s and upload them.
December 9, 2009 at 4:25 am #58306In reply to: How to change built in BuddyPress verbiage
Xevo
Participanthttp://www.poedit.net/download.php
Also for Mac.
December 9, 2009 at 4:20 am #58305In reply to: How to change built in BuddyPress verbiage
David Lewis
ParticipantCan anyone recommend a GUI po/mo editor for Mac that works?
December 9, 2009 at 4:13 am #58303In reply to: Please make installation easier
David Lewis
ParticipantOn my server I go from zero to buddypress in minutes. Easily under 9 minutes. Not sure what issues you were having but I’d be interested to know.
December 9, 2009 at 3:10 am #58300Xevo
Participanthttps://wordpress.org/extend/plugins/eshop/
Not sure how well it works with buddypress, but I suppose it shouldn’t make any difference. I’m planning on using that plugin myself as well.
December 9, 2009 at 2:57 am #58299Danny
ParticipantJeff, I have tried this a few times already to no avail. Now that I am trying to do it again, the link to upgrading from RC-1 is gone and I am unsure which files need to move and which ones just need to be deleted. Do you know of anyone that can actually help us in this transition or walk me through EXACTLY what I need to do, step by step. I have three sites that I need to get upgraded.
December 9, 2009 at 2:03 am #58297In reply to: Make your own custom BuddyPress page
Anonymous User 96400
InactiveNope. For an xtra profile page you’ll need to use something like this:
/**
* Setup update location nav item
* @since 1.0
*/
function sv_xprofile_xtra_nav()
{
global $bp;
$profile_link = $bp->loggedin_user->domain . $bp->profile->slug . '/';
bp_core_new_subnav_item( array( 'name' => __( 'Update Location', 'scuba' ), 'slug' => 'update-location', 'parent_url' => $profile_link, 'parent_slug' => $bp->profile->slug, 'screen_function' => 'sv_screen_update_location', 'position' => 15 ) );
}
add_action( 'xprofile_setup_nav', 'sv_xprofile_xtra_nav' );
/**
* Display location update screen
* @since 1.0
*/
function sv_screen_update_location()
{
if ( !bp_is_home() && !is_site_admin() )
return false;
/* Check to see if any new information has been submitted */
if( isset( $_POST['save'] ) )
{
/* Check the nonce */
check_admin_referer( 'sv_profile_update_location' );
if( $_POST['user_lat'] && ! $_POST['user_long'] || ! $_POST['user_lat'] && $_POST['user_long'] )
{
bp_core_add_message( __( 'You need to provide both a latitude and a longitude.', 'scuba' ), 'error' );
$error = true;
}
if( ! $error )
{
$lat = apply_filters( 'sv_sanitize_user_input', $_POST['user_lat'] );
$long = apply_filters( 'sv_sanitize_user_input', $_POST['user_long'] );
$id = apply_filters( 'sv_sanitize_user_input', $_POST['user_id'] );
$loc = array(
'user_lat' => $lat,
'user_long' => $long
);
update_usermeta( $id, 'user_location', $loc );
bp_core_add_message( __( 'Your location has been updated!', 'buddypress' ) );
do_action( 'sv_successful_location_update' );
}
}
bp_core_load_template( apply_filters( 'sv_xprofile_template_update_location', 'profile/location' ) );
}Then you obviously need a template file as well in your theme in the profiles folder. I use the above code to let the user pick his geo position on a google map and then I display the users on a flash map on the members directory page.
December 9, 2009 at 1:36 am #58294In reply to: Please make installation easier
gahoachma
ParticipantYou should describe your problems in more detail.
Personally it only took me about 2 hours or so to get wpmu and buddypress installed. And working properly. The only problem I encountered was with an RSS feed. Solution was to upgrade to php5 for that.
In any case the members and devs here seem to be very friendly and helpful.
December 9, 2009 at 1:04 am #58293Anonymous User 96400
InactiveSize doesn’t matter, right?

Anyways, adjusting some css should do the trick. set your logo as the background image of the a tag, give it the width and the height of your logo and then move the text out of the screen using text-indent.
Something like this (put it in custom.css, which you might have to create under _inc/css/):
#header h1 a {
background:transparent url(../images/buddypress/bp_logo.gif) no-repeat left top;
display:block;
height:42px;
text-indent:-999em;
width:180px;
}By the way, a little searching here on the forum would have given you the answer as it’s come up a few times already.
enjoy!
December 8, 2009 at 11:54 pm #58292In reply to: New BuddyPress 1.2 default theme
bpisimone
Participant“That” page is actually a WordPress page and as such has not much to do with BP. Let Andy take care of the more important things…
With basic skill level however you should be able to do that yourself like so: http://www.problogdesign.com/wordpress/custom-wordpress-login-screen/
Are there any important hardcoded theme changes in this one Andy (apart from the obvious total css renewal?
December 8, 2009 at 11:09 pm #58290In reply to: New BuddyPress 1.2 default theme
abcde666
Participantcould you please also “theme” this page:
http://testbp.org/wp-login.php
http://testbp.org/wp-login.php?redirect_to=http%3A%2F%2Ftestbp.org
December 8, 2009 at 10:31 pm #58288In reply to: New BuddyPress 1.2 default theme
jamesyeah
ParticipantWow it’s gorgeous, really amazing!
December 8, 2009 at 10:16 pm #58287In reply to: New BuddyPress 1.2 default theme
Andy Peatling
KeymasterThe colors are easily customized. It’s also possible to upload a custom background image for the header. This theme is supposed to provide a much simpler and more usable base for people to create themes from. The old default was not a good base at all.
December 8, 2009 at 10:11 pm #58286In reply to: New BuddyPress 1.2 default theme
Jean-Pierre Michaud
Participantdecember 12th, as Andy said in the display
December 8, 2009 at 10:10 pm #58285In reply to: New BuddyPress 1.2 default theme
Anonymous User 96400
Inactiveoh, one more thing. any idea when it’ll show up in the trunk? cheers!
December 8, 2009 at 10:08 pm #58284In reply to: How to change built in BuddyPress verbiage
cecilporter
ParticipantIs this still the way to do it?
It doesn’t work for me using WPMU 2.8.6 w/ BuddyPress 1.1.3
-
AuthorSearch Results