Skip to:
Content
Pages
Categories
Search
Top
Bottom

Profile looks weird

Viewing 13 replies - 1 through 13 (of 13 total)

  • djsteveb
    Participant

    @djsteveb

    @repterra – Using 2014 theme?
    Tried disabling all other plugins, including mu-plugins and bp-custom (if you have those added) ?
    If using 2014 theme have you modded it at all?


    danbp
    Moderator

    @danbp

    Hi @repterra,

    if you use a child theme with 2015, please read here about the new (since 2.3) Companion Style Sheet:

    BuddyPress Companion Stylesheets


    RepTerra
    Participant

    @repterra

    Hey @danbp
    I use Gardenia, I don’t understand what i need to do.

    And what you mean with modded? @djsteveb


    danbp
    Moderator

    @danbp

    Gardenia is not BP ready.

    Create first a child theme. Add a new folder to wp-content/thems/
    wp-content/themes/gardenia-child/
    Now add a new file and call it style.css
    Copy this header comment into it (/* & */ included):

    /*
    Theme Name: Gardenia-child
    Description: child theme
    Version: 1.0
    Author: XXX
    Template: gardenia
    */

    Save.

    In that folder, add another one called buddypress and another one in this folder called css

    Go to wp-content/plugins/buddypress/bp-templates/bp-legacy/buddypress/css/ and copy buddypress.css file into the css folder you created in the child theme.

    In legacy/buddypress/ directory, is a js folder. Copy the whole folder into child’s buddypress directory.

    End result should be:

    /gardenia-child/
    /gardenia-child/style.css

    /gardenia-child/buddypress/css/buddypress.css

    /gardenia-child/buddypress/js/buddypress.js
    /gardenia-child/buddypress/js/password-verify.js

    Go to dashboard > Appearrance > Theme and activate Gardenia-child.

    Done ! The theme shows BuddyPress properly.


    RepTerra
    Participant

    @repterra

    I did everything you told me to. But the theme is not the same anymore and its not working hmmm…


    danbp
    Moderator

    @danbp

    I tested successfully this method applied to Gardenia (free version) before posting it here. Retry. You can also ask the theme author.


    RepTerra
    Participant

    @repterra

    It looks like this, i did everything like you said. I will do it again maybe it works then.

    Btw allot of thanks for helping me out! 😀


    danbp
    Moderator

    @danbp

    Ok, let’s try something different.
    Add a file called functions.php to child root
    /child/functions.php
    Copy/paste this, including php tags

    <?php
    // enqueuing the child to parent - don't remove */
    function theme_enqueue_styles() {
        wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
    }
    add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' );
    
    /********************** CUSTOM STUFF **********************************/
    
    // other custom function
    
    ?>

    Inside child’s BuddyPress folder, you can remove anything except CSS and JS folder.


    RepTerra
    Participant

    @repterra

    Ok this worked but the menu bar is now gone. But everything is back again.


    danbp
    Moderator

    @danbp

    You may adjust existing menus or use the buddypress menu.

    BuddyPress Links in WordPress Menus


    RepTerra
    Participant

    @repterra

    Thanks, it works but i still have the same problem with the profile layout.


    RepTerra
    Participant

    @repterra

    The tables are still the same haha, Cant I change it in the css?


    danbp
    Moderator

    @danbp

    For sure you can, but without my help now. This is a BuddyPress support, not a theme support and you have to learn and do your home work on your side.

Viewing 13 replies - 1 through 13 (of 13 total)
  • The topic ‘Profile looks weird’ is closed to new replies.
Skip to toolbar