Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 19,676 through 19,700 (of 31,073 total)
  • Author
    Search Results
  • #107130
    Virtuali
    Participant

    unless you have physically made changes, or have removed the get_sidebar from the files.

    What have you imported? What styles from bp have you put into your theme? the entire default.css?

    #107129
    steliodj
    Member

    Hm…really my theme’s (the one with the search box,ads etc) sidebar is actually there? Or you mean buddypress’ sidebar?

    Can you spot out where is the line i have to edit or add?

    #107127
    Virtuali
    Participant

    Looks like you implemented some CSS from the buddypress default theme, most likely a Max-width css attribute. It’s overlapping the sidebar. I couldn’t pinpoint it off the top of my head…

    It’s probably under the `/* > Global Elements` or `/* > Container`

    #107125
    steliodj
    Member

    Hi again Virtuali…sorry for the multiple posts…my fault i found it it was in my theme’s style.css .

    How about the sidebar, is there anyway i can implement it ?

    Please advice.

    #107124
    Virtuali
    Participant

    No, not the buddypress css, your Theme’s Style.CSS.

    The easiest way to access this is in the wordpress admin –> Go down to the theme editor, and go down to the bottom to your style.css.

    Now find this piece of css:

    `/* Main Content


    */

    #content {
    width:960px;
    margin: 0px auto;`

    right below the last line, add
    `background-color: #85C8F2;`

    #107122
    steliodj
    Member

    Hi Virutali, thanks for helping me.

    You mean to add this in buddypress style.css , right ? The only theme that i have in buddypress is the default one..it’s style.css imports default.css

    and here is what i did…i added background-color: #85C8F2; but nothing changes. Is there any possibility that because of template pack plugin i have to edit something else?

    div#content {
    float: left;
    width: 100%;
    -moz-border-radius-topleft: 6px;
    -webkit-border-top-left-radius: 6px;
    -moz-border-radius-bottomleft: 6px;
    -webkit-border-bottom-left-radius: 6px;
    background-color: #85C8F2;

    Please advice

    #107116
    Virtuali
    Participant

    So, go into your theme’s Style.css and add:

    `background-color: #85C8F2;` under the #content {

    #107094

    @Paul, thanks. I look forward to trying it when it comes out.
    For now I’ve decided to try the Suffusion theme system.

    @Virtuali
    Disqus and IntenseDebate both have some shortcomings that I can’t deal with having on my site.

    mrwweb
    Member

    I was using a custom menu but went back to the default BP theme for testing purposes and noticed that /forums wasn’t listed (as it should be)

    #107079
    Paul Wong-Gibbs
    Keymaster

    The URLs look a bit different because this site is running a development version of BuddyPress, where we have added such a feature. Everything else you see is just the site’s theme

    #107073
    mrwweb
    Member

    @xberserker I’m having the same issue on WP 3.0.5/BP 1.2.8 both with a custom theme and without.

    Did you ever resolve this issue?

    Thanks.

    #107043
    @mercime
    Participant

    ===== TO SUPPORT WP 3 MENUS FOR BP 1.2.8 =====

    1. Create a child theme of bp-default https://codex.buddypress.org/theme-development/building-a-buddypress-child-theme/

    2. Create a functions.php file in your child theme and add this:

    `<?php

    /* https://codex.wordpress.org/Function_Reference/add_theme_support#Navigation_Menus */

    add_action( ‘init’, ‘register_my_menus’ );

    function register_my_menus() {
    register_nav_menus(
    array(
    ‘primary-menu’ => __( ‘Primary Menu’ )
    )
    );
    }

    /* Removes ul class from wp_nav_menu */

    function remove_ul ( $menu ){
    return preg_replace( array( ‘#^

      ]*>#’, ‘#

    $#’ ), ”, $menu );
    }
    add_filter( ‘wp_nav_menu’, ‘remove_ul’ );

    ?>`

    3. Copy over header.php from bp-default theme and paste into child theme folder.

    4. Replace line “ or the whole navigation block with code below:

    `
    false, ‘menu_class’ => ‘menu’, ‘theme_location’ => ‘primary-menu’, ‘fallback_cb’ => ‘display_home’ ) ); ?>

    `

    Adjust according to taste :-)

    #107040
    seomaverick
    Participant

    I was almost in heaven. But the theme not supporting menu’s make it difficult for users to create their own

    #107039

    In reply to: Increase font size

    Hugo Ashmore
    Participant

    You’ll need to be a little more specific about your set up and how you’re attempting this. What themes approach are you taking, are you using a custom theme, child theme of bp-default.

    In theory you should be able to simply adjust the body font-size but a series of fixed px units throughout the layout make this harder to accomplish so you may have to target specific elements within the activities page.

    The best and proper approach if you are using the bp-default theme is to create a simple child theme in which you simply have a style.css and in that you keep any custom styles.

    Guides on creating a child theme: https://codex.buddypress.org/theme-development/building-a-buddypress-child-theme/

    You’ll then need to identify the element you want to increase the size on. Depending on what elements you do actually want to increase you might simply be able to adjust the body font-size which is set to 12px but that will only change those elements that haven’t been explicitly set to a fixed size.

    #107038

    In reply to: Increase font size

    @mercime
    Participant

    It’s in bp-default/_inc/css/default.css where body has font-size of 12px.
    To change, recommend you create a child theme https://codex.buddypress.org/theme-development/building-a-buddypress-child-theme/ and make the change there

    Rob Watson
    Member

    Thanks, mercime. But when I add in “/wordpress/” in front of “/members/…”, I still get 404.

    http://xxx.xxx.xx.xxx/wordpress/ also returns a 404. But http://xxx.xxx.xx.xxx/ returns the buddypress-enabled home page, fully themed and functional, except for the fact that clicking any deeper part of the admin menus returns 404.

    My apache virtualhost settings are as follows:

    `
    ServerAdmin webmaster @xxx.xxx.xx.xxx
    DocumentRoot /data01/home/username/production/wordpress
    ServerName xxx.xxx.xx.xxx
    ErrorLog logs/xxx.xxx.xx.xxx-error_log
    CustomLog logs/xxx.xxx.xx.xxx-access_log common
    `

    Does anything need to change there to fix this problem?

    #107015
    Virtuali
    Participant

    Just creating new profile page category from my understanding??? Just to go your buddypress admin page under profile setup and create new fields there, no need to hook anything.

    P.S, why on your activity page is the header content below the avatar? Go into your theme’s CSS file and remove

    `div#item-header div#item-header-content {
    float:left;
    }`

    To clear things up, it should look a-lot nicer.

    #106995
    pcwriter
    Participant

    @CSDV

    Or you could try a theme that already has that type of menu feature built-in. Two such themes come to mind right off the bat:
    Custom Community: http://themekraft.com/theme/custom-community/
    BuddyLite: http://buddylite.com/buddylite-basic/

    If you search Google for Buddypress themes, you`ll likely find many more :-)

    #106984
    Paul Wong-Gibbs
    Keymaster

    If you’re using BP-Default, you’ll have to edit your theme’s header.php and take out the links, etc. In the next version of BuddyPress (1.3), you’ll be able to create the menus like this easily.

    Virtuali
    Participant

    What do you want to change to “Change Picture”, the title of the page, or URL, or what?

    if you want to change the title label, go into /members/single/profile/change-avatar.php and change the

    `

    ` to whatever

    if you have template pack installed, or have a child theme, it won’t change on bp updates.

    Virtuali
    Participant

    Oh, don’t put the code in bp-core.php

    If you have template pack installed, go into your theme, and go to members/single/profile/edit.php and put it next to the

    `<input type="submit" name="profile-group-edit-submit" id="profile-group-edit-submit" value=" ” />`

    Your code should be something like `Next`

    It should appear like this: Next :)

    P.S, if you have more than 2 profile categories, the second category will just redirect to itself, I don’t have time to post the string needed, I’ll do it later.

    Virtuali
    Participant

    Theme author (TY) couldn’t see the issue, but did say it could have something to do with file size, and it not being able to handle the request.

    This didn’t make much sense, because most of everybody is having this issue that is using arras. He said it also could be a jquery conflict.

    Anybody can do testing on my site if you wish.

    grosbouff
    Participant

    OK, but then why current_theme_supports( ‘post-thumbnails’ ) returns true ?
    I’ll give a shot and tell you what.

    #106966

    Me too.
    God I’ve spent a weekend trying to sort our a decent forum:
    bbpress would not integrate with my WP database. After a day of trying I gave up!
    bbphp just did look right gave that an hour.
    buddypress looks functionally good but I tried before to integrate with my Magazine Premium theme but there were too many problems .
    Buddypress themes seem few and far between. Most don’t support menus (in their menu bars: not their widgets!).
    The ones that do offer compatibility dont run on my site: Detox for the same reason as you and Easybuddy give another PHP error.

    Havnt tried it …yet (only soooo many hours in the day!) but I’ve come across Michael Kuhlmans blog http://www.michaelkuhlmann.com/blog/2010/07/08/how-to-add-custom-menus/
    who walks you though adding custom menus to the main menus of a buddypress theme.Not saying that’s what you are looking for but may be a good way of pimping a basic theme??

    I’ll keep looking.

    Good luck

    #106960
    studyguidevn
    Participant

    @imjscn Yeah! I totally agree with you. I had tried to integrate BB to Atahualpa Theme for my http://www.studyguide.com.vn/du-hoc-anh/ site but there were a lot of troubles because of their different structures.

Viewing 25 results - 19,676 through 19,700 (of 31,073 total)
Skip to toolbar