Search Results for 'buddypress'
-
AuthorSearch Results
-
September 15, 2011 at 1:43 am #120098
In reply to: Sidebar is under content on Buddypress pages.
ribena_wrath
MemberOK, thanks for your speedy reply!
September 15, 2011 at 1:15 am #120097In reply to: BuddyPress Integration with theme
Mike84
Member@mericme Ownership actually is the problem. Looking at the file ownership, the files that the bp-template-pack transferred to my theme have a different owner than everything else in my theme. And, due to the jacked up way i was looking at my filezlla, I was thinking they were actually transferring when they are indeed not. So now i need to change ownership on those files and folders. It’s strange that no one else has had the ownership issue though. I let bp-template-pack copy all of the files for me and it created this different owner.
September 15, 2011 at 1:14 am #120096In reply to: Sidebar is under content on Buddypress pages.
@mercime
Participant@ribena_wrath you’re missing the opening `
` and closing `` which are supposed to wrap around the widgets. If you need further assistance, open up you active theme’s page.php, copy all therein, then paste to pastebin.com, click submit, then copy the generated URL and post here.
September 15, 2011 at 1:06 am #120095In reply to: BuddyPress Integration with theme
@mercime
Participant@Mike84 that is really strange. Curious, what WP theme are you using?
== I’ve tested by editing mytheme/members/index.php and changing the container div to something completely off, so as to see it in firebug. But, upon viewing mysite.com/members, i still see the content and padder divs. ==
– Do you have any cache plugin on? Deactivate it.
– Where do you edit the BP template files – download to computer and edit it there then upload or do you edit in cpanel (and might have forgotten to save revision)?== Therefore making it impossible for me to edit the permissions which are currently set to 644? ==
You own those files. I have no problem changing permissions in my server. Are you on Windows server?September 15, 2011 at 12:28 am #120093In reply to: Sidebar is under content on Buddypress pages.
ribena_wrath
Memberoh and btw, my site is star-finder.co.uk
September 14, 2011 at 11:46 pm #120090In reply to: 3 Questions PLEASE help
Boone Gorges
Keymaster2 – You would have to write some javascript that does the refreshing. I don’t know of any ready-made implementations.
3 – There’s no automatic way to filter these out in BuddyPress at the moment. You could write a function that would take them out of $activities_template when hooked to bp_has_activites.
September 14, 2011 at 11:26 pm #120089In reply to: [resolved] Disable account deletion for members
Prince Abiola Ogundipe
Participant@pengume, goto admin dashboard, under buddypress click general settings, you will see Disable user account deletion?: change it to yes and save. thats it, you done user will not be able to delete account. you can now write contact …….@,,,,,,,,,,,, to delete your account in your FAQ .
regards
September 14, 2011 at 11:22 pm #120088In reply to: BuddyPress Integration with theme
Mike84
MemberSince the bp-template files were transferred originally transferred by bp-template-pack, would this mean that I am not the owner of the files? Therefore making it impossible for me to edit the permissions which are currently set to 644? I ask this because I cannot change permissions on the any of the template files. Anyone?
September 14, 2011 at 10:47 pm #120087In reply to: BuddyPress Integration with theme
Mike84
Member@mercime I still can’t seem to edit the correct templates. Ive tested by editing mytheme/members/index.php and changing the container div to something completely off, so as to see it in firebug. But, upon viewing mysite.com/members, i still see the content and padder divs. Any ideas??? Driving me nuts.
September 14, 2011 at 10:22 pm #120086In reply to: Removing message notifications from buddypress bar
jetlej
ParticipantProgress: I found the BP function in the core and figured out how to alter it to achieve the effect, but I can’t figure out how to do this in the function.php file instead of altering the core file.
The function:
`function bp_core_add_notification( $item_id, $user_id, $component_name, $component_action, $secondary_item_id = 0, $date_notified = false ) {
global $bp;if ( empty( $date_notified ) )
$date_notified = bp_core_current_time();$notification = new BP_Core_Notification;
$notification->item_id = $item_id;
$notification->user_id = $user_id;
$notification->component_name = $component_name;
$notification->component_action = $component_action;
$notification->date_notified = $date_notified;
$notification->is_new = 1;if ( !empty( $secondary_item_id ) )
$notification->secondary_item_id = $secondary_item_id;if ( !$notification->save() )
return false;return true;
}`and adding the following above return true; made it work:
` if ( $component_name == ‘messages’ ){
return false;
}if ( $component_action == ‘friendship_request’ ){
return false;
} `September 14, 2011 at 10:19 pm #120085In reply to: Removing message notifications from buddypress bar
jetlej
ParticipantI’m using the latest release candidate (which works great!). You can download it here: https://buddypress.org/2011/09/buddypress-1-5-release-candidate-1-and-buddypress-1-2-10/
September 14, 2011 at 9:51 pm #120084In reply to: Changing Group tab display defaults
rosewater1
MemberThanks so much for your reply and for explaining things to me.
I think I understand the situation now but the new function’s script is appearing at the top of my webpage above the header. I have also received this message: Warning: Cannot modify header information – headers already sent by (output started at /webroot/s/m/smoke019/primary/www/wp-content/plugins/bp-custom.php:
in /webroot/s/m/smoke019/primary/www/wp-includes/pluggable.php on line 934.Do you know if there’s something that has to get deleted from the second file the warning message mentioned in order to get this conflict to go away?
Thank you again.
September 14, 2011 at 9:49 pm #120083In reply to: [resolved] Issue with navigation – buddybar
September 14, 2011 at 8:10 pm #120082In reply to: Removing message notifications from buddypress bar
Mary Jane
MemberSorry I am not answering your question but how ru using 1.5 on your site?
September 14, 2011 at 7:09 pm #120077Paul Wong-Gibbs
KeymasterThere’s a setting in the BuddyPress general settings page to disable/enable commenting in the activity stream on forum posts or blog posts.
September 14, 2011 at 6:19 pm #120073In reply to: [resolved] Issue with navigation – buddybar
Adam
Member@valuser – The code snippet doesn’t work because of the poorly formed url link. Did you mean:
`<a href="/members/display_name /messages/inbox”>My Mail`
in that case you wouldn’t need display name – how ever the echo part does not echo a user name at all. in fact all I get is members/display_name/activity
September 14, 2011 at 2:08 pm #120060In reply to: bp-messages Compose Message autocomplete issue
rahul.dev
MemberYes there is a better solution to this problem i am code savvy and i have myself invented this solution
Step:1:
The solution is copy the content all content of file wp-load.php which you will find in the root of wordpress installation directory root directory. Then create a new file rahuldev.php paste all the code in wp-load.php to rahuldev.php file plus at the end of that rahuldev.php file add this small code as below
?php
$resultrah = mysql_query(“select user_login, user_nicename from wb_users where user_login like ‘%”.$_POST.”%’ or user_nicename like ‘%”.$_POST.”%'”);
while($row = mysql_fetch_array($resultrah))
{
?>
?php echo $row;?>?php
}
?>
replace ?php with <? php
make sure the name of the table if it is not default set during installation then that should be the name of the table as the name is in your installation
once the above code is added to the bottom of the new file then save the new file to the root of your wordpress application ie where there is wp-load.php there along with it should be our new file rahuldev.phpStep:2:
Open wp-content/plugins/buddypress/bp-messages/bp-messages-cssjs.php filereplace
var acfb =
jQuery(“ul.first”).autoCompletefb({urlLookup:’root_domain . str_replace( ‘index.php’, ‘/wp-load.php’, $_SERVER ) ?>’});
with
var acfb =
jQuery(“ul.first”).autoCompletefb({urlLookup:’root_domain . ‘/rahuldev.php’ ?>’});And now enjoy my magic
Thanks
Take careSeptember 14, 2011 at 2:05 pm #120059In reply to: bp-messages Compose Message autocomplete issue
rahul.dev
MemberYes there is a better solution to this problem i am code savvy and i have myself invented this solution
Step:1:
The solution is copy the content all content of file wp-load.php which you will find in the root of wordpress installation directory root directory. Then create a new file rahuldev.php paste all the code in wp-load.php to rahuldev.php file plus at the end of that rahuldev.php file add this small code as below
<?php
$resultrah = mysql_query(“select user_login, user_nicename from wb_users where user_login like ‘%”.$_POST.”%’ or user_nicename like ‘%”.$_POST.”%'”);
while($row = mysql_fetch_array($resultrah))
{
?><?php
}
?>make sure the name of the table if it is not default set during installation then that should be the name of the table as the name is in your installation
once the above code is added to the bottom of the new file then save the new file to the root of your wordpress application ie where there is wp-load.php there along with it should be our new file rahuldev.phpStep:2:
Open wp-content/plugins/buddypress/bp-messages/bp-messages-cssjs.php filereplace
var acfb =
jQuery(“ul.first”).autoCompletefb({urlLookup:’root_domain . str_replace( ‘index.php’, ‘/wp-load.php’, $_SERVER ) ?>’});
with
var acfb =
jQuery(“ul.first”).autoCompletefb({urlLookup:’root_domain . ‘/rahuldev.php’ ?>’});And now enjoy my magic
Take care
September 14, 2011 at 1:58 pm #120058In reply to: Performance : X million users with BuddyPress
Paul Wong-Gibbs
KeymasterIt scales fine.
September 14, 2011 at 1:19 pm #120057expressionsinweb
MemberYes turned off a few:
BuddyPress Privacy Component
BuddyPress Profile Gallery Widget
BuddyPress Profile Music Widget
BuddyPress Profile VideoDidn’t use them much but some data (not sure what exactly – it’s gone now anyway) was in the notifications table.
September 14, 2011 at 1:12 pm #120056In reply to: BuddyPress theme kills BBPress theme…
Steveorevo
MemberLook like BuddyPress’ has a version (what version?) of bbPress built in. Aside from the activity stream, looks like creating forums and topics is fully supported in BuddyPress. Combine it with Group Email Notifications plugin for BuddyPress and you have a pretty nice and fully functional forum. I tried bbPress 2.0 plugin too, but found it incompatible/too many issues. Best bet right now is to do a base install of WP + BuddyPress 1.2 then use BuddyPress’ Forum Setup menu item. Do Not Install bbPress 2.0 plugin atop this.
September 14, 2011 at 12:53 pm #120054In reply to: My buddypress site: yeah! Hackney
linick
Membernice website…
which plugin are you using on here ?:
http://www.yeahhackney.com/local-businesses/September 14, 2011 at 12:44 pm #120053expressionsinweb
MemberFor 1.5 RC1 the file that had the error was “~/wp-content/plugins/buddypress/bp-members/bp-members-notifications.php”
For 1.2.10 the file was “~/wp-content/plugins/buddypress/bp-core/bp-core-notifications.php”.I had the error first with 1.2.10 then tried and upgrade to 1.5 RC1, both versions had the same error but for different files.
I happy that my contents of the entire /buddypress/ directory are correct for 1.5 RC1. I’m now using 1.5 RC1.September 14, 2011 at 12:35 pm #120051Boone Gorges
KeymasterHm. Your upgrade must not have completed properly. In BP 1.5 RC1, there is no file called bp-core/bp-core-notifications.php. That file, along with the files that called it, must be left over from your pre-upgrade version of BuddyPress. You might consider deleting the contents of the entire /buddypress/ directory, and then reuploading BP 1.5-RC-1’s files into that folder.
September 14, 2011 at 12:01 pm #120049In reply to: Plugin to add content to my friends member pages
leethompson
Member@ewebber Unfortunately no, but I am using the privacy plugin already, I need to show links between friends. But only friend can see them.
-
AuthorSearch Results
