Search Results for 'buddypress'
-
AuthorSearch Results
-
August 13, 2012 at 4:03 pm #139277
Sven Lehnert
ParticipantHi @all, we testet the issues and could not reproduce them. The theme works just fine with a child theme as well. We can’t guarantee it works with modified child themes, as we don’t know what are the changes.
Do you use a child theme? If so, please check if the issue still exists if you switch to the parent theme.
Also, please make sure you have all other plugins disabled (except BuddyPress), to make sure this error does not arise from a plugin conflict.
August 13, 2012 at 3:41 pm #139276frank tredici
Memberper @r-a-y: “Is there any reason why you need multisite?”
It is my understanding that as of WordPress 3.0 MU was automatically built into core. I am not using multisite, per se, that I know if. At least I did not intent to use it. I do know that I have 2 dashboards in my WordPress under My Sites:
(1) Network Admin
(2) my Buddy Press siteIt does get a little hairy lopping through both dashboards to make settings tweaks and activate and deactivate plug-ins, etc.
I will certainly give ‘wpmu_signup_user_notification‘ a try…
August 13, 2012 at 3:36 pm #139275In reply to: Facebook pages
juanmaguerrero
ParticipantHi, @sakarya I’ve managed to get that kind of functionality in my site by using groups with added custom extra fields. That way I can sub-categorize them and list them in any special ways I want. Maybe that could help you… let me know if you want me to tell you more, regards
August 13, 2012 at 3:30 pm #139273frank tredici
MemberSo @mercime, if I already have bbPress installed and running, I should download it and install it again? It’s bbPress that drives this warning message?
August 13, 2012 at 3:03 pm #139271In reply to: Maintenance Mode
meg@info
ParticipantWhen you upgrade to the latest version of BuddyPress (1.6), you will be presented with a new little wizard to help get you on the right track.
Are you doing that ?
look here
August 13, 2012 at 2:57 pm #139270In reply to: BP 1.6 upgrade and avatar functions
sarah_lena
Member@mercime The images that are not resizing properly are the user’s avatars. The various sizes of the uploaded avatars are in the folders, but the correct file is not being brought up by the function.
I’ve also noticed that in my pre-upgrade installation (before I switched to Buddypress 1.6 and the latest Salutation theme version) that the user avatars were all working properly in the front end, but in the backend adminbar the avatar being called was wrong as well. I had already switched to the wp adminbar using `define(‘BP_USE_WP_ADMIN_BAR’, true);` .@philippmuenchen Sorry to hear that you’re having the problem, but actually relieved to know that I’m not the only one… hopefully we can get this figured out!
August 13, 2012 at 2:55 pm #139269In reply to: How to downgrade?
Paul Wong-Gibbs
KeymasterI recommend against downgrading unless you have a database backup from the old version of BuddyPress. In 1.6, we changed how the BP DB version number is stored in the database, and adjusted the schema of the Activity table.
I suspect running a 1.6-versioned database against a 1.5-site will cause BuddyPress to think it’s not installed, and force you to run through the install wizard again (as it’s already installed, of course, I’m not sure what would happen). It’s then possible you would have problems updating to a 1.6+ version of BP in the future because we’ve changed where/how the BP DB version number is stored in the database.
We’ve got a 1.6.1 coming out very soon, which fixes compatibility with plugins and themes that were doing things wrong before, in ways that we didn’t anticipate when we touched parts of the code in 1.6. The most common themes with problems — Salutation and Custom Community — have already or will soon release updated versions of those themes to work with 1.6, too.
August 13, 2012 at 2:21 pm #139267Prince Abiola Ogundipe
Participant@davidkooo, you can easily achieve that with css by replacing “notification text” witth image icon like facebook and only the number of notification will show on the image.
somthing like: {background:url(_inc/images/alerts-icon.png)center no-repeat transparent !important;text-indent: -9999px;width:147px;height:25px;}
Note: you have to adjust accordingly.
August 13, 2012 at 2:20 pm #139266juanmaguerrero
ParticipantHi, @shawn38 Glad to see someone found this useful

I have actually optimized the code to work flawless and best performing. I could make a plugin with it just have to learn how to replace some code that is already given with BuddyPress, I will investigate that today and hopefully upload the plugin really soon. Will let you know with another message here. Thanks a lot for your encouraging words!
August 13, 2012 at 1:10 pm #139264davidkooo
Participant@naijaping yeah it works, but how to get rid of “Notifications” text… I would like to display only number. Thanks.
August 13, 2012 at 12:07 pm #139258In reply to: How to change base buddypress url / folder
djduckworth
MemberHmm, the one I’ve set up seems to use buddypress.
http://processpedia.designquotes.com.au/buddypress/members/admin/
The homepage links a username to /buddypress/members/admin/
August 13, 2012 at 12:05 pm #139257In reply to: [resolved] Mobile Phone Opt Out? Button somewhere?
August 13, 2012 at 11:55 am #139256oblax
ParticipantI happened to encounter the error “Fatal error: Cannot access empty property in…..wp-contentpluginsbuddypressbp-corebp-core-template.php on line 787” Any news on the update?
August 13, 2012 at 10:51 am #139254Prince Abiola Ogundipe
Participant@davidkooo, the code i gave you above work like a charm, i dont use admin bar i code a custom one in my header.
You can see it in action here : http://goo.gl/4OqMP
Am still working on the site.
userame : demo
password :demoAugust 13, 2012 at 10:50 am #139253@mercime
Participant@indieconnect curious why it’s borking in Chrome in your installation. What theme are you using? What plugins are activated?
August 13, 2012 at 9:06 am #139247In reply to: Theme crash on updating to latest BuddyPress plugin
Paul Wong-Gibbs
KeymasterBBP_Theme_Compat is provided by bbPress.
August 13, 2012 at 8:12 am #139246davidkooo
Participant@Roger Coathup: how to edit this to work without admin bar? I know I need to replace $wp_admin_bar, but with what? I want to append it to my header, which is `
`
`/**
* Build the “Notifications” dropdown
*
* @package Buddypress
* @since BuddyPress (1.5)
*/
function bp_members_admin_bar_notifications_menu2() {
global $wp_admin_bar;if ( !is_user_logged_in() )
return false;$notifications = bp_core_get_notifications_for_user( bp_loggedin_user_id(), ‘object’ );
$count = !empty( $notifications ) ? count( $notifications ) : 0;
$alert_class = (int) $count > 0 ? ‘pending-count alert’ : ‘count no-alert’;
$menu_title = ‘‘ . $count . ‘‘;// Add the top-level Notifications button
$wp_admin_bar->add_menu( array(
‘parent’ => ‘top-secondary’,
‘id’ => ‘bp-notifications’,
‘title’ => $menu_title,
‘href’ => bp_loggedin_user_domain(),
) );if ( !empty( $notifications ) ) {
foreach ( (array) $notifications as $notification ) {
$wp_admin_bar->add_menu( array(
‘parent’ => ‘bp-notifications’,
‘id’ => ‘notification-‘ . $notification->id,
‘title’ => $notification->content,
‘href’ => $notification->href
) );
}
} else {
$wp_admin_bar->add_menu( array(
‘parent’ => ‘bp-notifications’,
‘id’ => ‘no-notifications’,
‘title’ => __( ‘No new notifications’, ‘buddypress’ ),
‘href’ => bp_loggedin_user_domain()
) );
}return;
}
add_action( ‘admin_bar_menu’, ‘bp_members_admin_bar_notifications_menu2’, 90 );`August 13, 2012 at 6:12 am #139238In reply to: Can’t access to certain profile tabs
Paul Wong-Gibbs
KeymasterSee http://themekraft.com/custom-community-issues-with-buddypress-1-6/, let them know
August 13, 2012 at 5:56 am #139235In reply to: What can we do against spam
9087877
Inactive@presence-films Try using my approach to registration, see it here: http://www.snaplist.net23.net/register/ I have 0 spammers and the sites been live for a year. @modemlooper Sounds like a great idea. Could you make the conditional so that the admin can decide which condition is applied and if the user does not meet the criteria the plugin prevents them from posting?
August 13, 2012 at 5:56 am #139234c0rp53
Memberhaven’t actually tried it myself but it would be something like:
`
Country:`
and I’d put that just after the latest updates endif in the members-loop.php
I’m not a great coder, just learning with buddypress. Let me know if it works
PS: by doing it that way, you can add some style in style.css
August 13, 2012 at 12:49 am #139228John James Jacoby
KeymasterBumping this, since it still sounds like a neat opportunity and I’m curious what progress was made.
9087877
InactiveHonestly if you want BuddyPress to function correctly, In my opinion you should create a child theme based on the BuddyPress default theme and make any changes within its css. If you don’t know how to make a child theme then I can send you a really simple one that allows you to change the CSS of the buddypress default theme. As of this post the newest theme is Fanwood and I am not certain it will function correctly with WordPress 3.4.1 and BuddyPress 1.6
August 12, 2012 at 11:57 pm #139225In reply to: Buddypress profile menu plugin shows on all menus
modemlooper
Moderatorif you are on a custom theme it might not work. I have it installed on bp-default and it works fine.
August 12, 2012 at 11:16 pm #139221In reply to: Buddypress profile menu plugin shows on all menus
smallmoves
Memberuh oh! Now I don’t see the profile link on any navigation menu
August 12, 2012 at 11:07 pm #139220Christopher Churchill
ParticipantBUMP
IF THIS HELPS!
I’m currently running
WordPress 3.4.1
buddypress 1.6
installed as a directory on root
using default theme
no modifications of corefiles
no custom feature of bpcustom
hosted with argeweb.
running on linux -
AuthorSearch Results