Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 37,501 through 37,525 (of 68,918 total)
  • Author
    Search Results
  • #118000
    @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;
    }`

    #117999
    modemlooper
    Moderator

    The 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

    #117998
    Paul Wong-Gibbs
    Keymaster

    Yes, applicable information does need to get to the codex; thanks for helping!

    #117996
    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.

    #117990
    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.

    http://bit.ly/gfIVw2

    Hope this helps get things rolling!

    ^F^

    Can you tell we really, really want 1.5 released to production… :)

    #117989

    In reply to: Nominate

    enderandrew
    Member

    I 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.

    https://buddypress.trac.wordpress.org/ticket/3451

    #117986
    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!

    sonny1993
    Member

    Buddypress 1.2.9 and Buddypress template pack Version 1.1.4

    #117983
    danbpfr
    Participant
    #117981

    @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.

    #117979
    igeekout
    Member

    @modemlooper

    I 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?

    #117977
    Eric Andrew Lewis
    Participant

    rad, let me know if you need help I guess, I’m interested in this functionality being added.

    #117974
    Anonymous User 7775228
    Inactive

    @foxly I vote for cake :)

    #117955
    enderandrew
    Member

    With 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()

    #117973
    Paul Wong-Gibbs
    Keymaster

    Reposting the spam is not going to help at all.

    #117972

    In 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.png

    Please help me fix it. The theme’s screenshots look amazing, I hope I can get it to work.
    Thanks.

    #117971
    modemlooper
    Moderator

    Did 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’ );`

    #117968
    foxly
    Participant

    @karmatosed

    BuddyPress 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
    @boonebgorges

    On 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^

    #117964
    asdfgh
    Member

    Speaking 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?

    #117960

    In reply to: Frisco Child Theme

    Micheal Kennedy
    Participant

    @davidtcarson No I wasn’t, but thanks, that took care of the Admin Bar problem.

    #117957
    Cam
    Participant

    This 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).

    #117956
    Cam
    Participant

    This 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.

    #117953
    Selu Vega
    Participant

    We are trying to do it in base from mapology plugin maps, and custom post.

    #117952

    In reply to: what does it do ?

    danbpfr
    Participant

    So 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 !

    #117944
    Meryl
    Participant

    Since 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

Viewing 25 results - 37,501 through 37,525 (of 68,918 total)
Skip to toolbar