Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 16,901 through 16,925 (of 31,071 total)
  • Author
    Search Results
  • #124692
    r-a-y
    Keymaster

    Thanks Chris for testing and finding the problem.

    Your fix has been added to the theme compatibility page:
    https://codex.buddypress.org/releases/1-5-developer-and-designer-information/#theme

    If you encounter any other bugs since upgrading to BP 1.5, please post about them! Thanks!

    #124691
    MrHatchet
    Member

    Also – it’s a custom built theme from Artisteer.

    #124689
    @mercime
    Participant

    @MrHatchet
    – What WordPress theme are you attempting to integrate with BuddyPress? Did you check out https://codex.buddypress.org/theme-development/wordpress-to-buddypress-theme/ ?
    – Did you install and activate the BP Template Pack plugin then go through the Compatibility Process? Strange, the plugin does not mess around with header width.

    #124683
    Paul Wong-Gibbs
    Keymaster

    Themes always go in WordPress’ /wp-content/themes/ folder.

    #124682
    chrishajer
    Participant

    I was using a custom theme as well and had to change one line in my wp-content/themes/themefolder/groups/create.php file

    I had this:

    Needed to change to this based on the bp-default theme:

    After that, the avatar upload form appears at step 3 of the group creation process. HTH someone.

    #124681
    chrishajer
    Participant

    I was using a custom theme as well and had to change one line in my wp-content/themes/themefolder/groups/create.php file

    I had this:

    Needed to change to this based on the bp-default theme:

    After that, the avatar upload form appears at step 3 of the group creation process. HTH someone.

    #124680
    chrishajer
    Participant

    I was using a custom theme as well and had to change one line in my wp-content/themes/themefolder/groups/create.php file

    I had this:

    Needed to change to this based on the bp-default theme:

    After that, the avatar upload form appears at step 3 of the group creation process. HTH someone.

    #124666
    chr313
    Member

    @nahummadrid I wrote a way to highlight activity stream. I’m using the global unified search from @sbrajesh Also I am using wp 3.2.1 and bp 1.2.9. I went back to an older version because I needed the global search to work. The next thing I’m trying to do is see if the global search for the comments to updates as well, then highlight those results. Here is my test site here.

    http://chr313.powweb.com/1.2.9/

    In your functions file add these:

    function highlight($needle, $haystack){
    $ind = stripos($haystack, $needle);
    $len = strlen($needle);
    if($ind !== false){
    return substr($haystack, 0, $ind) . '' . substr($haystack, $ind, $len) . '' .
    highlight($needle, substr($haystack, $ind + $len));
    } else return $haystack;
    }

    function bp_activity_content_body_return($activity_body) {
    $activity_body = highlight($activity_body, bp_get_activity_content_body());
    echo $activity_body;
    }

    In your theme file under
    /themes/bp-addata/activity/entry.php replace the exising contents of div activity inner with this

    if (isset($_POST)){
    bp_activity_content_body_return($_REQUEST)
    }else{
    bp_activity_content_body()
    }

    In your css file add
    #highlighter {
    background-color: #FFEE5A;
    }

    Hope that works for you,

    Tammie Lister
    Moderator

    First up hoorah to the 1.7 meaning bbPress like templating!

    I do like the idea of a new theme in 1.7 then to reflect that. A mobile first, brand spanking new theme – oh my that would rock.

    #124657
    Paul Wong-Gibbs
    Keymaster

    Read the error message:

    There is early output (headers) started at /hermes/bosweb26d/b1249/ipg.krugersightingscom/wp-content/themes/custom-community/_inc/ajax.php.
    And then the “zingiri-forum” plugin tries to send some page headers at /hermes/bosweb26d/b1249/ipg.krugersightingscom/wp-content/plugins/zingiri-forum/forum.php on line 849, but it can’t, because BP-Default’s javascript already has.

    One of these things is happening in the wrong order, or in the wrong place.

    #124649
    @mercime
    Participant

    == I can’t disable the forum because i might loose everything. ==
    Change to bp-default theme and see if issue is corrected.

    #124647
    @mercime
    Participant

    @prasanth-p do clarify if you made a WP theme or a bp-default child theme. Solution would be different depending on scenario.

    @JackVD do be more specific. BP/WP versions? Using bp-default child theme or a WP theme with BP template pack plugin? New install? Check out System and Server Requirements as well as WordPress configuration https://codex.buddypress.org/getting-started/before-installing/#system-server

    #124646
    @mercime
    Participant

    You’re welcome.

    Which version of IE are you using? The bbPress (Forums), Members, and Groups Pages are full width and aligned in IE 8/9. You just might want to remove the negative left and right margins for div#item-list-tabs, div#subnav, and div.pagination as well as add top and bottom paddings to #forums tr. Check out modifications made in this tutorial for some more styling tips/corrections.

    It’s your site’s Activity Pages that are not rendering properly. I suggest you open up activity/index.php and change
    `

    `
    back to
    `

    `
    as that center alignment breaks down layout of activity stream.
    #124643

    In reply to: How to activate

    @mercime
    Participant

    The only bundled theme that comes with BuddyPress is the bp-default theme.

    To activate a theme, go to Appearance > Themes > choose Canvas – and activate. For more information about your theme, please contact theme author/s.

    #124619
    aces
    Participant

    If your child theme hasn’t got a functions.php file then create your own in a simple text editor such as notepad++.

    The first line should be just “ with nothing after it. ( The same php tags as the bp-custom.php file )

    Then place something like the above nav menu function and action in between the tags….

    For more info check the codex link above or http://justintadlock.com/archives/2010/06/01/goodbye-headaches-hello-menus

    #124617
    dude
    Member

    oh right so this is the way to add my own secondary menu !! great

    sorry to be a pain aces, is there any particular place to nest this..? or am I deleting / replacing existing code..?

    I haven’t copied a functions.php file to my child theme yet..I guess I should do this first and make the edits in there right !

    #124614
    ryans213
    Member

    if people need more information to give feedback, I am using WPMU 3.2.1., BuddyPress default theme, with s2member.

    #124609
    aces
    Participant

    bp-custom.php goes into the plugins folder immediately under /wp-content/plugins/ not in a theme folder/directory….

    #124607
    aces
    Participant

    ( https://codex.wordpress.org/Navigation_Menus )

    In your child theme’s functions.php file:
    `function register_my_menus() {
    register_nav_menus( array(
    ‘primary’ => __( ‘Header Navigation’ ),
    ‘secondary-menu’ => __( ‘Alternative Menu’ ),
    ‘another-menu’ => __( ‘Another Menu’ )
    ) );
    }
    add_action( ‘init’, ‘register_my_menus’ );
    `

    #124606
    dude
    Member

    Thanks for that!

    I just deleted the bp-mobile plugin due to technical problems and I’m back with just a single menu now..? (primary) seems like bp-mobile creates a secondary theme location. I guess I could just use the plugin to create the secondary location / menu and choose my custom logged-out menu from the drop down right?

    #124604
    dude
    Member

    `<?php

    remove_action( ‘bp_adminbar_menus’, ‘bp_adminbar_thisblog_menu’, 6 );

    ?>`

    didn’t work for me for some reason..? I thought it might be clashing with the dashboard commander plugin so tried de-activating that plugin to no avail :(

    tried as suggested in a bp-custom.php in my bp-default child theme

    #124603
    allwest
    Member

    I deleted buddypress all togehter and reinstalled with the standard theme and receive the same message.

    chr313
    Member

    Thank you @johnjamesjacoby @DJPaul for the replys, it’s a clean install with only the style.css customized in a child theme. 1.5.1 bp, 3.2.1 wp. No plugins installed besides bp and bbpress which I installed using the site wide forums selection within forums settings in buddypress. Forum updates or new forum posts do not show in activity stream at all.

    Mentions and favorites for the forum are not showing on a user profile or activity stream as well, other wise mentions and favorites work with update posts. So mentions and favorites function just not within forums. This makes me believe it has to do with bbpress. Otherwise buddypress is working as it should.

    What type of database update would I need to preform on bp if that’s the case? Any other solutions?

    Thank you for your help all,

    Paul Wong-Gibbs
    Keymaster

    I believe the best way is to not update BPDefault in 1.7, keep it bundled with core (for now), and ship an all-new theme. BPDefault is pretty old now.

    #124589
    pcwriter
    Participant

    @joemd

    If your theme does not have a custom css area, you’ll need to edit your theme’s style.css file. Add the following to that file and adjust the color to suit:

    `div.item-list-tabs ul li.selected a, div.item-list-tabs ul li.current a {
    color:#212121;
    }`

Viewing 25 results - 16,901 through 16,925 (of 31,071 total)
Skip to toolbar