Search Results for 'buddypress'
-
AuthorSearch Results
-
October 2, 2010 at 5:38 pm #94045
Hugo Ashmore
ParticipantV3 API removes the need for a key, If people ask nicely I may post my revised map code
October 2, 2010 at 5:25 pm #94043pcwriter
ParticipantJust a heads up for anyone else (i.e. – n00bs like me) who wants to implement this on their site: when you insert your new API key in the code where it says [YOUR API KEY] , make sure those square brackets – [ ] – are removed. In other words, don’t just drop your key between them (like I did
) ‘cuz it ain’t gonna work.A little styling and it works & looks just fine. Check it out:
http://nowrecovery.com/members/admin/October 2, 2010 at 4:31 pm #94040In reply to: Removing the ”view” link from the activity stream
LPH2005
Participant@pcwriter – The function posted by @rogercoathup was used to get rid of the “view” link and the steam on TheChemBook has an added reply button for forum posts using the function found in this forum topic: http://etivite.com/groups/buddypress/forum/topic/how-did-you-add-the-view-blogpost-button/#topic — this directs the browser to the forum topic so their reply doesn’t just end up in the activity stream.
You are welcome on the bp-wp-navbar code email. That plugin could be a real winner once that bug is tracked down and squashed.
PS. Your code prompted learning more about Codelobster and php. Infact, XAMPP was installed just so that more php code be learned. Thank you.
October 2, 2010 at 4:28 pm #94039In reply to: Buddypress forums not working
christofian
ParticipantI tried making the group completely public and private: didn’t work.
October 2, 2010 at 4:14 pm #94038In reply to: Removing the ”view” link from the activity stream
pcwriter
ParticipantOctober 2, 2010 at 3:50 pm #94037In reply to: Fatal error
Paul Wong-Gibbs
KeymasterThis is a problem with the plugin, which hasn’t been updated for the current version of BuddyPress. You’re best to contact one of the authors and ask if an update is happening.
@boonebgorges: ping
October 2, 2010 at 3:33 pm #94034oriste
Participant@nahummadrid
I’m interested in doing the same thing as well on WP3. Have been roaming the internet for two days now and nothing has come up so far.October 2, 2010 at 2:03 pm #94032In reply to: Limiting the numbers of characters
pcwriter
ParticipantOctober 2, 2010 at 1:34 pm #94031In reply to: Translating buddypress
John
Participant@rogercoathup Any clue on how I could modify the plug-in to fit Buddypress 1.2.5.2 ?
Or how to create one ? I don’t need anything fancy, I just want to offer my buddypress’s user the choice to choose in which language they want their buddypress functions.What plug-in used Marco Rossi ? Very nice site by the way

All of this from the default buddypress theme ?October 2, 2010 at 1:21 pm #94030In reply to: Removing the ”view” link from the activity stream
rich! @ etiviti
Participantcould redirect before loading the single/activity/permalink template -> `bp_core_redirect( $bp->loggedin_user->domain );`
just hook on the action bp_activity_screen_single_activity_permalink
October 2, 2010 at 12:49 pm #94028In reply to: Translating buddypress
Roger Coathup
ParticipantSorry, I don’t.
Marco Rossi experimented with some plugins for this on the site we created for him at http://fisherbook.com/fisherbook-magazine – but, I notice he is no longer using them, so they mustn’t have been successful
October 2, 2010 at 12:43 pm #94026In reply to: Translating buddypress
John
Participant@rogercoathup Thanks, apparently this plug-in is only working until the version 2.9.2 of WordPress.
Do you know a plug-in who could offer the user the choice to choose the buddypress’s function language ?
October 2, 2010 at 10:03 am #94020In reply to: Can’t activate BuddyPress
ezbizniz
ParticipantI disabled the default BP function to add all blogs to BP DB table with `add_site_option(‘bp-blogs-first-install’, 1);`
Instead I do my own BP blogs installation for each blog during upgrade:
`function bp_blogs_install_after_multisite_upgrade($blog_id) {
echo(‘Blog ID ‘ . $blog_id . ‘:
‘);
if(!get_blog_option($blog_id, ‘bp-blog-recorded’)) {
$users = get_users_of_blog( $blog_id );if ( $users ) {
foreach ( (array)$users as $user ) {
$role = unserialize( $user->meta_value );if ( !isset( $role ) )
bp_blogs_record_blog( $blog_id, $user->user_id, true );
}add_blog_option($blog_id, ‘bp-blog-recorded’, ‘true’);
echo(‘Blog ID ‘ . $blog_id . ‘ added to BuddyPress database.
‘);
}
} else {
echo(‘Blog ID ‘ . $blog_id . ‘ already in BuddyPress.
‘);
}
}add_site_option(‘bp-blogs-first-install’, 1);
add_action(‘wpmu_upgrade_site’, ‘bp_blogs_install_after_multisite_upgrade’);
`October 2, 2010 at 3:54 am #94014In reply to: Error with the plugin BuddyPress Maps
RobotFX
Participanttweetyx, I’m using your modified archive and the exact setting in the 2 images and I can see the map now when I set the location on the edit profile page. However, the map is still not loading on the profile page. There’s just the “Show your address on a map ?” text and in the right the map doesn’t load, though in the page code I can see the map’s script.
Does it works for you or you have the same problem? If you managed to make it work, can you share the solution with us, please, or upload another working plugin?
Thank you very much for the modifications.October 1, 2010 at 8:27 pm #94004In reply to: Ban and Kick User is Broken
Yak Cast
ParticipantI put in a ticket and screen shots here: https://trac.buddypress.org/ticket/2661
October 1, 2010 at 5:28 pm #93997dougjoseph
MemberI have found code instances of specifying one filter, but I have been unable to find code instances (or examples) for combining more than one filter. Can anyone give me a lead or show an example of how to combine more than one filter? I would be deeply indebted.
October 1, 2010 at 5:21 pm #93995In reply to: installing bbForums on existing buddypress site
jimhellas
MemberIs there any quick way to resize the oEmbed videos for now, while we wait for the next version of oEmbed plugin?
October 1, 2010 at 4:27 pm #93991In reply to: How to turn OFF multisite?
@mercime
Participant“The site was originally installed on WordPressMU”
You can convert a WPMU install with only one site to single WP, it’s not hard to do and there are tutorials online on how to go about it. But none take BuddyPress into consideration and you’re on WP 3.0.1, so all bets are off. I would suggest experimenting on test install first and see how that works out, taking into consideration avatar and media upload paths. Main work would be on database. In the meantime, I assume that in your dashboard > Super Admin > Options > only user registration is allowed.
October 1, 2010 at 4:19 pm #93990In reply to: Ban and Kick User is Broken
rich! @ etiviti
Participantsame for mark user as spammer
https://trac.buddypress.org/ticket/2575October 1, 2010 at 4:00 pm #93989In reply to: Search Activity
thelandman
Participant@antonrsa, thanks mate. I’ve also been busy with an activity stream that is automatically updated with ajax and it neatly drops in with the jcarousel plugin with jquery.
October 1, 2010 at 3:56 pm #93988In reply to: atahualpa 3.4.4 and buddypress 1.1.2
catwebweaver
MemberUpdate: I have abandoned BuddyPress entirely for now. Too many problems.
October 1, 2010 at 3:33 pm #93986In reply to: Translating buddypress
Roger Coathup
ParticipantYou would have to ask on the support forum for that plugin (if they have one)
October 1, 2010 at 2:50 pm #93983In reply to: Search Activity
October 1, 2010 at 2:09 pm #93981In reply to: Translating buddypress
John
Participant@rogercoathup Thanks but this will be applied to all the blogs ? My buddypress is on a secondary blogs. And I just want to offer the users the choice to translate the functions in their languages.
I have found something who could really fit my needs but I can’t make it work :
https://wordpress.org/extend/plugins/fw-quick-langswitch/I’ve installed it, but if I click on the flags nothing happen. I have named my images according to the name of my languages files (buddypress.pot et buddypress-fr_FR.mo)
October 1, 2010 at 1:37 pm #93980lespaul
MemberWell I have tried this and it don´t work.
I can visit the site but I can´t login to the administration even with a clean installation of Buddypress.Please help me with this.
-
AuthorSearch Results