Search Results for 'buddypress'
-
AuthorSearch Results
-
March 27, 2011 at 2:10 am #108816
In reply to: Facebook Connect with Buddypress
ds123
Participanti experienced same thing with wp fb autoconnect thank you @partyfrikadelle for narrowing it down …worked great on a theme that uses buddypress template pack…but when i used it on a buddypress default child theme no luck …it worked sometimes meaning eventually it did create an account but did not transfer the user avatar image. andy peatling built a plugin facebook buddypress connect that worked with the buddypress default theme
March 27, 2011 at 1:57 am #108815In reply to: Changing default tab in the settings menu
@mercime
Participant@rogercoathup https://trac.buddypress.org/browser/tags/1.2.8/bp-core/bp-core-settings.php
the bad way – change `’position’ => 20, to ‘position’ => 10,` and vise versa in core lines 21 and 22

or an easy way
`remove_action( ‘bp_setup_nav’, ‘bp_core_add_settings_nav’ );
add_action( ‘bp_setup_nav’, ‘bp_core_roger_settings_nav’ );
funtion bp_core_roger_settings_nav() {
global $bp;
// the stuff
}looking for the best way
March 27, 2011 at 1:02 am #108814In reply to: bp_adminbar_notifications_menu
pcwriter
ParticipantWhat theme are you using? Is it BuddyLite?
We’ve chatted a bit in the forums there, that’s why I ask.March 26, 2011 at 11:36 pm #108813In reply to: [Resolved] Locating comments.php for editting
Sparkey
ParticipantI think I got it, it is maybe a plugin that I am using:
“BuddyPress Activity Stream as Blog Comments”
I haven’t found the place to edit yet but I have a new place to search!
March 26, 2011 at 11:15 pm #108812Alan
Memberthat’s true ,lot’s of things are hidden.
March 26, 2011 at 5:04 pm #108800Roger Coathup
ParticipantWe’ve built a lot of sites on BuddyPress now… if I’d time to write about it, I’d unfortunately probably be agreeing with woothemes.
There’s a lot of great functionality ‘hidden’ in BuddyPress, but the API / template tags need some serious work – especially removing all the html they unnecessarily throw in – design & presentation decisions belong in the theme not in the API (and particularly not in the ‘get_’ functions).
If you want to break away from the default theme & basic structures, it’s not easy to theme BuddyPress: too much time is spent stripping out / rewriting unwanted functionality, rather than adding building your site and adding features.
March 26, 2011 at 4:52 pm #108799In reply to: Changing default_subnav_slug for Activity
Roger Coathup
Participant@liping – was about to post that this may need to go into bp-custom.php rather than functions.php
This order of invocation issue should really be addressed. Changes like tab orders, removing tabs, etc. should be theme specific – i.e. you may want to run a site where you switch themes – with the presence or not of tabs being determined by the theme.
Unfortunately, needing these things to be in bp-custom.php means they affect all themes, not just the one you want it for.
Anyway, thanks for the heads up on bp_core_new_nav_default() function… I’d removed the general tab from settings… and was searching for a way to remove the default link to it that still remained.
March 26, 2011 at 4:42 pm #108798In reply to: [Resolved] How to delete Log in tab
@mercime
ParticipantRemoving Login link – Open up active theme’s functions.php file and add
`remove_action( ‘bp_adminbar_menus’, ‘bp_adminbar_login_menu’, 2 );`More information at https://codex.buddypress.org/theme-development/modifying-the-buddypress-admin-bar/
March 26, 2011 at 4:37 pm #108797@mercime
ParticipantThere are many different privacy and/or membership plugins for single or multisite installation. Just search for them in WP repo under privacy or membership
https://wordpress.org/extend/plugins/network-privacy/
https://wordpress.org/extend/plugins/more-privacy-options/
https://wordpress.org/extend/plugins/s2member/
https://wordpress.org/extend/plugins/private-buddypress/
https://wordpress.org/extend/plugins/buddypress-private-community/March 26, 2011 at 3:17 pm #108782March 26, 2011 at 2:11 pm #108795In reply to: Buddypress Causes my WordPress Ratings to Break
Profile Name
MemberI don’t really know how to tell if it does

Sorry
March 26, 2011 at 1:59 pm #108794dctc11
MemberI was wondering the same thing. I just purchased Digital Access Pass and was wanting protect the entire Buddypress install from non members. Any ideas?
March 26, 2011 at 10:41 am #108790In reply to: Buddypress Causes my WordPress Ratings to Break
Paul Wong-Gibbs
KeymasterDoes your web browser report any JavaScript conflicts?
March 26, 2011 at 10:00 am #108786In reply to: Site hacked :S?
nickmy
Participant@modemlooper is this just a virus for accessing the ftp passwort?
A friend told me that he 1 times used windows on hic pc to connect to that site.
March 26, 2011 at 9:45 am #108784Bowe
ParticipantIt’s pretty easy to do that @Pisanojm! I’ll write about it on BP-Tricks today or Monday!
March 26, 2011 at 9:21 am #108783surya
ParticipantStill not werking clearly . . .
the content was not loaded . . .
just the header . . .March 26, 2011 at 9:01 am #108781In reply to: bp_adminbar_notifications_menu
Boone Gorges
KeymasterAdding bp_adminbar_notifications_menu() in your header will probably work (as long as it’s nested inside of a `
- ` element), but you will need to modify the styles. You can go in one of two directions.
One, you can try to bring over the styles from bp-default/_inc/css/adminbar.css. You can import that entire stylesheet into your child theme with this line at the top of your child theme’s style.css:
`@`import url( ../../plugins/buddypress/bp-themes/bp-default/_inc/css/adminbar.css );
(See https://codex.buddypress.org/theme-development/building-a-buddypress-child-theme/ for more info on BP child themes.) The downside of doing this is that, depending on your theme and the element in which you’re trying to nest the notifications menu, you’re going to have a really hard time getting it to look good with your theme.The other method is to skip bp_adminbar_notifications_menu() altogether. Instead, copy the entirety of that function from bp-core/bp-core-adminbar.php into functions.php of you child theme. After you’ve copied it, change the name of the copied function (to something like wwday3_adminbar_notifications_menu() – it doesn’t matter, you just have to avoid duplicate function names). Then – and here’s what will make your life easier – change the markup, and in particular the CSS selectors (classes and ids) being produced by the function, so that it matches the CSS selectors in the existing dropdown menus you’re trying to integrate with. Then, in header.php of your child theme (or wherever you’re currently trying to call bp_adminbar_notifications_menu()), make sure to call this new function instead.
March 26, 2011 at 8:28 am #108779In reply to: bp_adminbar_notifications_menu
WWDay3
ParticipantThis is starting to get into the child theme area, which I’m still learning. To import the adminbar.css, is it best to reproduce the inc/css/adminbar.css into the child theme directory? And then import it in the child theme’s stylesheet?
Or, should I do it like ../../plugins/buddypress/bp-themes/bp-default/_inc/css/adminbar.css, which is how the child theme imports the default.css?
March 26, 2011 at 7:05 am #108777In reply to: [Resolved] Speeding up buddypress
imjscn
ParticipantI will try batche too, seem it solves the problem partially.
@gregfielding , did you try to deregister the js/css and re-register manually? I setup another domain for this. under this domain, one subdomain for css, one subdomain for js. and put them on Cloudflare. Since all your blogs loading css/js from this domain, it should help a bit.Another tool I’m thinking is the WP Multi Network plugin developed by JJJ. I haven’t tried it. From what I’ve reading, it can networking wp site from different domains. So, the idea is to use this plugin to get the network, then, cache the blogs, leave the community site un-cached. What do you guys think?
March 26, 2011 at 6:07 am #108775In reply to: [Resolved] Speeding up buddypress
ewebber
ParticipantI think I might give cloudflare a go
March 26, 2011 at 5:18 am #108773In reply to: [Resolved] Compatibility with InStyle Theme
@mercime
Participant… and so you open up your instyle’s page.php file and compare the HTML structure of that page file with the HTML structure of the template files transferred to your instyle theme folder during the BP template pack process.
For more info about the whole process and a sample walkthrough:
https://codex.buddypress.org/theme-development/wordpress-to-buddypress-theme/
https://codex.buddypress.org/theme-development/bp-template-pack-walkthrough-level-easy-2/March 26, 2011 at 4:22 am #108772Pisanojm
ParticipantWhat I really need is a way to CDN the avatars… this would be a huge help, but so far no one has come up with a good way to do it other than @apeatling on the BP-Demo site, but none of us know how he did it yet…
March 26, 2011 at 3:31 am #108767In reply to: [Resolved] Compatibility with InStyle Theme
@mercime
Participant@Haxs1990 I see a right sidebar here http://elegantthemes.com/preview/InStyle/?page_id=135
if this is the Instyle theme you’re referring toMarch 26, 2011 at 2:56 am #108764In reply to: Can’t leave group
@mercime
ParticipantLooked in trac for a similar situation which would be fixed in BP 1.3. There’s a similar issue for hidden groups but the leave button showed up https://trac.buddypress.org/ticket/2668
The set up right now is that If you are the only group admin, you can’t leave the group, thus the “Leave Group” button will not show up in group header. Since you already mentioned there are two group admins then the “Leave Group” button should show up.
Log in BP trac https://trac.buddypress.org/ with same username and password you used to log in here. Add new ticket and share BP/WP versions and steps to replicate your issue.
March 26, 2011 at 1:39 am #108759In reply to: Can’t leave group
@mercime
ParticipantWP/BP versions? Have you deactivated plugins except BuddyPress and changed to default theme with that configuration?
-
AuthorSearch Results