Search Results for 'buddypress'
-
AuthorSearch Results
-
August 8, 2011 at 6:32 pm #118000
In reply to: Change single tab colour
@mercime
Participant@naijaping what theme are you using and how are nav items generated in your theme? If you’re using child theme of bp-default, there are CSS classes automatically which you can target for styling currently selected items.
For BP 1.2.9 there’s .selected and .current_page_item classes
`ul#nav li.selected a, ul#nav li.current_page_item a {
background: #f5f5f5;
color: #555;
}`For upcoming BP 1.5 bp-default using wp_nav_menu, there’s .selected, .current-menu-item, .current_page_item, and even current_page_ancestor
`#nav li.selected a,
#nav > li.current-menu-item a,
#nav > li.current_page_item a,
#nav > li.current_page_ancestor a {
background: none repeat scroll 0 0 #F5F5F5;
color: #4D4D4D;
}`August 8, 2011 at 6:06 pm #117999In reply to: new subpage for every user
modemlooper
ModeratorThe BuddyPress skeleton component plugin is a base example o how to create new tabs/pages for users.
it will create a slug like /member/user/example
August 8, 2011 at 5:54 pm #117998In reply to: BuddyPress 1.5 compatibility for plugins and themes
Paul Wong-Gibbs
KeymasterYes, applicable information does need to get to the codex; thanks for helping!
August 8, 2011 at 5:11 pm #117996In reply to: BuddyPress 1.5 compatibility for plugins and themes
Boone Gorges
Keymaster@foxly I can’t say “thanks” enough for the effort you guys are putting into 1.5 compatibility. This is a *huge* help to the community (and benefits you too, since it gets 1.5 out sooner
)It’ll be great to get @karmatosed write-access to the google doc. She has stepped up and taken a leadership role with a 1.5-compat codex page and with this forum thread, and it will be great for you to combine your resources – BP Media checking compatibility in-house, and @karmatosed (and others) collecting reports, etc from the forums.
Again, thanks so much.
August 8, 2011 at 4:07 pm #117990In reply to: BuddyPress 1.5 compatibility for plugins and themes
foxly
Participant@boonebgorges You’re welcome …

We’ve thrown some resources your way!
1) Our testers are currently checking every BuddyPress plugin with > 1000 downloads. Our throughput is about thirty a day. Thus far, 85% fail (as in cannot be used) rate.
http://code.google.com/p/buddypress-media/wiki/DOCS_BP_OnePointFive
@karmatosed …email me [CarlRoett] -at- [Gmail.com] and we’ll give you write access to the spreadsheet and wiki.
2) Our core devs are currently building a wiki to help other developers transition their plugins. Estimated finished in 2 days.
http://code.google.com/p/buddypress-media/wiki/DOCS_BP_FixingPlugins
3) OurSIGINT guys are doing their best to contact everyone with incompatible plugins and give them a “heads up”. We didn’t know about 1.5 until we stumbled across it in the forum, and we suspect the situation is similar for many other developers.
Hope this helps get things rolling!
^F^
Can you tell we really, really want 1.5 released to production…

enderandrew
MemberI don’t know if it is exactly what you had in mind, but I’d like to see the ability to +1/Like/Vote up any particular content in Buddypress, so I submitted a feature request ticket.
August 8, 2011 at 2:05 pm #117986In reply to: BuddyPress 1.5 compatibility for plugins and themes
Boone Gorges
Keymaster@foxly Thanks so much for the kind words! Means a lot coming from a seasoned dev like yourself. Looking forward to seeing you in the dev chat!
August 8, 2011 at 1:49 pm #117984sonny1993
MemberBuddypress 1.2.9 and Buddypress template pack Version 1.1.4
August 8, 2011 at 1:38 pm #117983danbpfr
ParticipantAugust 8, 2011 at 1:32 pm #117981In reply to: Change single tab colour
Prince Abiola Ogundipe
Participant@mercime, thanks for this, exactly what i wanted. but there is another problem. how can i Highlight a page that has no page id number? e.g Home, Activities, Members, Group. have tried this ul#nav li.Home a {color: #FF0000; } but didnt work.
August 8, 2011 at 12:20 pm #117979In reply to: if (is_user_logged_in())
igeekout
MemberI am not using a caching plugin.
I tried setting cookie_domain to .domain.com, http://www.domain.com, and http://www.domain.com/subdomain and none of those work.
Would debugging provide any info?
August 8, 2011 at 10:59 am #117977In reply to: BuddyPress FourSquare-like CPTs and behavior?
Eric Andrew Lewis
Participantrad, let me know if you need help I guess, I’m interested in this functionality being added.
August 8, 2011 at 7:56 am #117974In reply to: BuddyPress 1.5 compatibility for plugins and themes
Anonymous User 7775228
Inactive@foxly I vote for cake
August 8, 2011 at 7:11 am #117955In reply to: Component slug vs root slug
enderandrew
MemberWith core functionality in Buddypress, it is simple enough to just point a URL at bp_get_groups_root_slug() plus whatever you want to append, and no matter where you have groups, it just works. And the example of this site is that forums is actually located in supporttopics. But for a new plugin, I’m not sure how to replicate the functionality for bp_get_FOO_root_slug()
August 8, 2011 at 6:20 am #117973In reply to: Loads of SPAM coming from buddypress.org!
Paul Wong-Gibbs
KeymasterReposting the spam is not going to help at all.
August 8, 2011 at 6:13 am #117972In reply to: Frisco Child Theme
PJ
Participant@davidtcarson How can I get the theme to work?
@intermike How did you get it to work?The theme comes out all mixed up
header:
http://i52.tinypic.com/16hnviq.pngPlease help me fix it. The theme’s screenshots look amazing, I hope I can get it to work.
Thanks.August 8, 2011 at 4:48 am #117971In reply to: Component slug vs root slug
modemlooper
ModeratorDid you look in the skeleton component? Not sure if this will work but you create a page/tab/slug attached to a root slug with something like this.
`function bp_foo_setup_nav() {
global $bp;bp_core_new_subnav_item( array(
‘name’ => __( ‘My Slug’, ‘buddypress’ ),
‘slug’ => ‘foo’,
‘parent_slug’ => $bp->BP_MEMBERS_SLUG->slug,
‘parent_url’ => $BP_MEMBERS_SLUG,
‘screen_function’ => ‘bp_foo_page’,
‘position’ => 10
) );}
add_action( ‘bp_setup_nav’, ‘bp_foo_setup_nav’ );`August 8, 2011 at 4:19 am #117968In reply to: BuddyPress 1.5 compatibility for plugins and themes
foxly
ParticipantBuddyPress Media is now fully compatible with BuddyPress 1.5. We have a beta version available at the link below, and we’ll issue a release to production next week (once our test team are finished with it).
http://code.google.com/p/buddypress-media/downloads/detail?name=bp-album_2011-08-07_BETA.zip
When listing us on the compatible plugins page, please list us as “BuddyPress Media”, and link to this URL: “http://code.google.com/p/buddypress-media/”. BP-Album will *cease to exist* after BuddyPress 1.5 is released (it will turn into BuddyPress Media).
====================
@DJPaul
@johnjamesjacoby
@apeatling
@MrMaz
@boonebgorgesOn behalf of the Buddypress Media team, congratulations on your new release. We’ve spent the past three days going through your code, and we’re just *astonished* at the improvements in structure, efficiency, and documentation!
This could be worth cake …

We’ll be dropping by your dev chat this Wednesday to bombard you with questions and talk about what we can do to help get other key plugins working with 1.5 as quickly as possible.
See you there!
^F^
August 8, 2011 at 3:16 am #117964In reply to: Adding another groups tab…
asdfgh
MemberSpeaking of tabs
I changed the header height, but now the navigation is being really odd. You can only click like the top of it, the rest of it doesn’t act like a button. Any ideas @DJPaul?August 8, 2011 at 2:25 am #117960In reply to: Frisco Child Theme
Micheal Kennedy
Participant@davidtcarson No I wasn’t, but thanks, that took care of the Admin Bar problem.
August 8, 2011 at 2:11 am #117957In reply to: Trouble with Events Manager (free version)
Cam
ParticipantThis appears to be a child theme issue. Take a look at some of the later replies in the article you mentioned. I was having this problem and I switched to a non-child theme and the problem was fixed.
Try moving the buddypress folders (specifically the members/single/plugins.php and same in groups files) to your child theme if you need to keep the child theme flexibility.
VIsit: https://wordpress.org/support/topic/none-of-the-member-links-are-working?replies=17 to read an open thread on this issue (or a very similar one).
August 8, 2011 at 2:10 am #117956In reply to: Admin bar links for Events Manager and One Quic post
Cam
ParticipantThis appears to be a child theme issue. Take a look at some of the later replies in the article you mentioned. I was having this problem and I switched to a non-child theme and the problem was fixed.
Try moving the buddypress folders (specifically the members/single/plugins.php and same in groups files) to your child theme if you need to keep the child theme flexibility.
August 8, 2011 at 1:07 am #117953In reply to: BuddyPress FourSquare-like CPTs and behavior?
Selu Vega
ParticipantWe are trying to do it in base from mapology plugin maps, and custom post.
August 8, 2011 at 12:53 am #117952In reply to: what does it do ?
danbpfr
ParticipantSo it is the name “default _component” who finaly leads me to confusion.
But good to know from now, it’s only useable in member component.
Thank you @r-a-y !August 7, 2011 at 10:55 pm #117944In reply to: login works, but I get a blank page first
Meryl
ParticipantSince this was a new site, and I couldn’t resolve the issue above, I trashed and reinstalled wordpress and buddypress. Therefore, it’s all a new install and there are no plug-ins other than what came with wordpress. Still I’m having the same problem!!
This is the error message that I get in debugging.
Warning: Cannot modify header information – headers already sent by (output started at /home/content/m/e/r/meryl/html/csasprouts/wp-content/plugins/buddypress/bp-core.php:565) in /home/content/m/e/r/lmeryl/html/csasprouts/wp-login.php on line 353
Warning: Cannot modify header information – headers already sent by (output started at /home/content/m/e/r/meryl/html/csasprouts/wp-content/plugins/buddypress/bp-core.php:565) in /home/content/m/e/r/meryl/html/csasprouts/wp-login.php on line 365
Warning: Cannot modify header information – headers already sent by (output started at /home/content/m/e/r/meryl/html/csasprouts/wp-content/plugins/buddypress/bp-core.php:565) in /home/content/m/e/r/meryl/html/csasprouts/wp-includes/pluggable.php on line 737
Warning: Cannot modify header information – headers already sent by (output started at /home/content/m/e/r/meryl/html/csasprouts/wp-content/plugins/buddypress/bp-core.php:565) in /home/content/m/e/r/meryl/html/csasprouts/wp-includes/pluggable.php on line 738
Warning: Cannot modify header information – headers already sent by (output started at /home/content/m/e/r/meryl/html/csasprouts/wp-content/plugins/buddypress/bp-core.php:565) in /home/content/m/e/r/meryl/html/csasprouts/wp-includes/pluggable.php on line 739
Notice: Undefined index: redirect_to in /home/content/m/e/r/meryl/html/csasprouts/wp-content/plugins/buddypress/bp-core/bp-core-filters.php on line 141
-
AuthorSearch Results