Search Results for 'buddypress'
-
AuthorSearch Results
-
February 25, 2010 at 10:52 pm #65608
In reply to: new plugin: BuddyPress Rate Forum Posts
Dwenaus
Participant@xfreme which comments are you talking about? blog comments or activity feed replies?
February 25, 2010 at 10:47 pm #65607In reply to: Who's online not works…
cargo
MemberSuch topic already exists, sorry.
https://buddypress.org/forums/topic/bug-whos-online-widget-shows-nothing
February 25, 2010 at 10:46 pm #65606In reply to: new plugin: BuddyPress Rate Forum Posts
xfreme
ParticipantThank you! It is one of the most expected features i’d like to have

BTW, what with rating on comments? some of them sometimes are great and it’ll be good to rate them also!
February 25, 2010 at 10:19 pm #65601Tyler Regas
ParticipantI have to say that I’m glad to see that the community around BP appears to be very strong, and that’s good thing. I’ve always tried very hard to advocate for open source, and have done so for over a decade now. I plan on advocating more for WordPress, BuddyPress, and bbPress, as well as the WordPress Foundation through my Autism site. I take exception to those who talk about being able to tell when a site is based on WordPress. Of course, its up to the designer of the site whether or not they will fly that flag, and I’ve long ago decided that I would let everyone know what I was using to get things done. I’ve been running Mobodojo on WP since 1.2.
Sadly, though, I’ve been growing accustomed to the automagical nature of WP and have stopped using themes which need to be tweaked every time the code base gets updated (though Atahualpa and Arras are stunningly powerful themes) as well as counting on plugins to do everything I need. The deficit lies in the fact that I’m hopeless when it comes to coding. Sure, I can edit existing PHP and even make it work 13% of the time, and I’ve been hacking around HTML for years, but there are things I need to have my site do, and so I’ll need to buckle down and either find out a way to do it myself or pass along my passion to someone (or someones) who have the skills.
I realize that my opening post sounded upset, and I was, but that frustration should never have been vented on the BP community. I do thank you all for making some mild fun of me and, otherwise, being very cordial and helpful. I’m also pleased with myself to have managed to spark a little bout of debugging

The site is phrind.com. If you aren’t a member, you will be redirected to blog.phrind.com.
February 25, 2010 at 10:05 pm #65599In reply to: Edit the Site Wide Activity Widget
nickrita
Participantdemilio, I didn’t yet manage to put the content on different lines, but maybe you want to look at this threat for a half solution:
https://buddypress.org/forums/topic/easy-change-of-activity-design?replies=8#post-39467
February 25, 2010 at 9:48 pm #65595PJ
Participanthttps://wordpress.org/extend/plugins/buddypress-real-names/
I tried that but the registration form doesn’t change and all and when I click the Buddypress button in the site admin it redirects me to my homepage. The title of the plugin sounds good, but if it worked that would be better.
February 25, 2010 at 8:52 pm #65590In reply to: Convert a WordPress Theme to a BuddyPress Theme
Andrea Rennick
ParticipantYou have to go inot the BP folders that are added to the theme, and wherever there’s a “content” div, match that up to the HTML markup in the original theme.
If it;s overly complicated in the theme – yeah, pain in the ass. (which is why there’s unfinished themes on my hard drive
)
February 25, 2010 at 7:25 pm #65584In reply to: Convert a WordPress Theme to a BuddyPress Theme
bnt76
Participant@Andrea_r it was globalpress bought it from themeforest pain in the bum to do.
I basically follow the steps as in the Buddypress template pack, however I have had issues with matching up the div and content classes / containers.
I know that once I have actually done it once, I will be able to do it again but its a nightmare, I think the theme is overly complicated.
February 25, 2010 at 7:18 pm #65582In reply to: Security problem – how do i hide the admin account?
ousep
ParticipantIf you don’t want to get into the database, the simplest way would be to create another administrator account, logging in as the new admin, and deleting the user named admin.
PS: @hnla Buddypress now works with regular WP, too.
February 25, 2010 at 7:07 pm #65581In reply to: Like it? Vote it!
Dwenaus
Participantdon’t forget to vote for and rate other buddypress plugins you’ve tried: https://wordpress.org/extend/plugins/tags/buddypress
February 25, 2010 at 6:47 pm #65577r-a-y
KeymasterTry modifying some of these settings in /wp-content/plugins/bp-custom.php or in wp-config.php:
define ( 'BP_AVATAR_THUMB_WIDTH', 50 );
define ( 'BP_AVATAR_THUMB_HEIGHT', 50 );
define ( 'BP_AVATAR_FULL_WIDTH', 150 );
define ( 'BP_AVATAR_FULL_HEIGHT', 150 );More info found here:
https://codex.buddypress.org/how-to-guides/changing-internal-configuration-settings/
February 25, 2010 at 6:40 pm #65574andrew_s1
ParticipantCode revised to give protection even if buddypress gets deactivated: adds a second line of defence by hooking a wordpress action too. I’ve assumed that there’s no conflict here, but I don’t know if these two hooks collide. It seems to work ok.
<?php
/*
Plugin Name: BuddyPress Lockdown
Plugin URI: https://buddypress.org/
Description: Lock down your BuddyPress site if a user is not logged in.
Author: Andy Peatling & Andrew_S1
Version: 1.2
Author URI: https://buddypress.org/
Site Wide Only: true
*/
function bp_lockdown() {
global $bp;
if ( BP_REGISTER_SLUG != $bp->current_component &&
BP_LOGIN_SLUG != $bp->current_component &&
BP_LOGIN1_SLUG != $bp->current_component &&
!is_user_logged_in() ) {
bp_core_redirect( site_url( BP_LOGIN_SLUG ) );
}
}
function wp_lockdown() {
if ( !is_user_logged_in() ) {
auth_redirect( 'wp-login.php' );
}
}
add_action( 'bp_init', 'bp_lockdown');
// if no buddypress, have a backup plan
add_action( 'send_headers', 'wp_lockdown');
?>February 25, 2010 at 6:20 pm #65571In reply to: How to: Modify the bp admin bar
intimez
ParticipantI pasted Burt’s code to the end of function.php and I get a blank page
Did I miss something?
[wordpress2.9.2 + buddypress1.2.1]
February 25, 2010 at 4:56 pm #65561In reply to: BuddyPress-Links 0.3 FINAL is here at last
Anton
ParticipantWorks 100%.
February 25, 2010 at 4:49 pm #65558andrew_s1
ParticipantNote that using this method, if buddypress became deactivated, all of your site’s posts, and the comments, would become completely visible.
February 25, 2010 at 4:42 pm #65557In reply to: need help with plugin
intimez
ParticipantIs this what you are looking for?
https://codex.buddypress.org/how-to-guides/customizing-labels-messages-and-urls/
February 25, 2010 at 4:41 pm #65556In reply to: Multiple groups and members directories
gwu123
Participantany luck with this…i want to do something similar
February 25, 2010 at 4:28 pm #65554andrew_s1
ParticipantI’ve submitted a ticket for the issue of wp-login not being registered as a root_component:
https://trac.buddypress.org/ticket/2074
There’s a patch attached to that ticket, to make the necessary changes to bp-core.php
And here’s my revision of the lockout plugin:
<?php
/*
Plugin Name: BuddyPress Lockdown
Plugin URI: https://buddypress.org/
Description: Lock down your BuddyPress site if a user is not logged in.
Author: Andy Peatling & Andrew_S1
Version: 1.1
Author URI: https://buddypress.org/
Site Wide Only: true
*/
function bp_lockdown() {
global $bp;
if ( BP_REGISTER_SLUG != $bp->current_component &&
BP_LOGIN_SLUG != $bp->current_component &&
BP_LOGIN1_SLUG != $bp->current_component &&
!is_user_logged_in() ) {
bp_core_redirect( site_url( BP_LOGIN_SLUG ) );
}
}
add_action( 'bp_init', 'bp_lockdown');
?>February 25, 2010 at 4:18 pm #65551In reply to: BuddyPress Like
Alex
ParticipantNotifications has been a bit of a pain, so that will come in later… sorry
Currently working on adding visibility options as @Rbl suggested, as well as options for the number of likers to display from the settings screen as @xp02ed added.
@21cdb I love the idea of having a page to show the most popular content, this will be a bigger job but I’m definitely including it! I will also include a widget to show similar data.
February 25, 2010 at 4:15 pm #65550In reply to: BuddyPress-Links 0.3 FINAL is here at last
MrMaz
ParticipantI just tagged 0.3.2 which has some pretty significant bug fixes.
* Fixed broken paging issues
* Fixed bug with status check in some queries
* My Links now correctly only shows the displayed user’s links
* My Links activity now correctly only shows the displayed user’s links activity
xspringe
Participant+15
Some feedback on the Funding progress bar: maybe you could set it to a more reasonable amount so there’s a goal to work towards and we can actually see the progress bar move after a donation. 9,000 USD might be a bit steep

http://jeffsayre.com/2010/01/02/do-you-support-buddypress-privacy/
February 25, 2010 at 4:00 pm #65544In reply to: Upgrading from 1.2 to 1.2.1
PJ
Participant@ catinw12
Um, I’m not sure what you mean. Are you asking if I purge the older buddypress folder, upload the new one, then uploaded the any files I’ve customized? Yes. I left that detail out. That’s why the backup is essential! I made sure to overwrite some standard BP files with the saved customized files I’ve created.
February 25, 2010 at 3:56 pm #65542In reply to: BUG? Whos online widget shows nothing…
fuzzyman
ParticipantI’m experiencing this too. Running BP 1.2.1, WPMU 2.9.1, PHP Version 5.2.9-2, Apache 2.2.11 (Win32). On the previous version, the Who’s Online work perfectly, on the current version, I just get the annoying “There are no users currently online”.
I know that there are at least 16 people online, but for some reason, they are not displayed. I Google’d for a solution, but have not (up to now) found anyone experiencing this with the new version.
BuddyPress 1.2.1
WPMU 2.9.1
PHP 5.2.9
MySQL 5.0.51a
Apache 2.2.11
OS Windows Vista Business 32-bit
Theme: BuddyPress Default 1.2.1
Plugins: BuddyPress 1.2.1, Simple LDAP Login 1.3.0.3
February 25, 2010 at 3:49 pm #65540In reply to: Email Login & Randomized User URLs – Solution
sweller
ParticipantYeah, it seems to work fine by replacing the three lines of the username block with mt_rand. However be sure that there are letters somewhere in the value, such as the “mem” above. Buddypress will throw back an error without letters.
Also this probably wouldn’t work with large websites with thousands of people, as the chance of generating the same username goes up. You’d probably have to write a function that generates a long string of random letters and numbers.
February 25, 2010 at 3:20 pm #65536Jeff Sayre
ParticipantSo, how many people are employed by Auttomatic to work on this project?
One. Andy.
I’ve been poking around for some time and I’m a little surprised that not one person has been confused by the complete lack of security in BuddyPress.
You need to poke around a little more.
https://buddypress.org/forums/topic/privacy-1
https://buddypress.org/forums/topic/privacy
https://buddypress.org/forums/topic/buddypress-privacy-component-an-update
Also, privacy is on the BuddyPress roadmap.
As Andy states, implementing privacy in BP or any social network is not an easy task. I am working on updating my older privacy component to work with BP 1.2 and WP/WPMU 2.9.x. It will be awhile longer before I have a working alpha for testing. But, privacy is coming to BuddyPress!
-
AuthorSearch Results