Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 28,076 through 28,100 (of 31,072 total)
  • Author
    Search Results
  • #50652
    David Lewis
    Participant

    Let me know if that works. It would go in wp-content/themes/bphome/css/site-wide.css

    When I saw you all talking about using Javascript just to center a theme and give it a fixed width… I sensed someone somewhere along the line went down a rabbit hole :) LOL.

    #50651

    Hello,

    I had the same kind of problem. The Template Path was wrong (maybe a bug ?).

    Try to put your member template in this directory : yoursite/wp-content/bp-themes/bp-themes/bpmember

    It worked for me. Good luck !

    #50646
    hatiro
    Participant

    As there was no solution provided here and its been some time ago maybe this has been resolved, but its a problem that I encountered.

    I haven’t fully tested this but after a hunt around I found a couple of techniquues.

    Using javascript to refresh on resize between the <head> tags causes infinite loops in IE in some cases so that will not solve the problem.

    I found out though that if you include position:relative in all of your main outer divs including body and body.directory in the IE fixes css files in the bphome and bpmember themes your problems should go away…

    Let me know if this works for you….as I’ve only tested it locally and on IE7…

    #50641
    plrk
    Participant

    You could do it, but it is no five minute job, as you’d have to learn of a WordPress theme template works and add the code of the widgets to the code of the theme you are using. This means you pretty much have to learn PHP. Do you know PHP?

    May I ask why you don’t want to use the widgets?

    #50637
    marcaurel75
    Participant

    The thing is: I only thought I had deactivated the bp-plugin completely (via backend).

    I guess it was removed from the active_sitewide_plugins-field in the sitemeta-table in the database – but it was not removed from the wpmu_sitewide_plugins-field in the same table.

    So the site still worked (no HTTP-500-error), and the umlaut-issue with the p2-theme remained.

    When I then removed the bp-plugin-entry via phpmyadmin from both fields, the “main blog” didn’t appear anymore (error 500), but the two “sub blogs” I have still functioned. And the one sub blog with the P2-theme worked then without the umlaut-issue.

    I hope this clears things up a bit.

    So for me it is pretty clear that the bp-plugin somehow interferes with the P2-editor and causes the umlaut-issue.

    #50636
    Paul Wong-Gibbs
    Keymaster

    I deactivated the BP-plugin. Problem remains. So it’s probably an issue with WordPress MU and the P2-theme?!

    ?

    #50634
    marcaurel75
    Participant

    I deactivated all plugins via phpmyadmin – in the sitemeta-table as well as in the options-table of the single blogs (there are 3 in my installation right now).

    So the HTTP-500-Error disappeared. And all of a sudden the P2-theme worked properly as well.

    This means: the regular deactivation via backend of the buddypress-plugin didn#t really work. The umlaut-issue with P2-theme seems related to buddypress.

    #50632
    marcaurel75
    Participant

    HELP! Since I tried to reactivate the BP plugin I receive a HTTP 500 error when I try to reach the site… mpf!

    #50631
    marcaurel75
    Participant

    I’ll check it. Thanks for the support!

    #50629
    Paul Wong-Gibbs
    Keymaster

    You have said that the problem occurs on WPMU, and that it does not occur on regular WP. You have also said this problem is not caused by BuddyPress.

    I haven’t got an install of regular WP to test this on, so I am going to assume it is either a WPMU issue *or* you are using an old version of the P2 theme.

    #50627
    marcaurel75
    Participant

    Doing more research I found the following thread in the wp-forum:

    https://wordpress.org/support/topic/273413?replies=2:

    —-

    Mippe: P2 brokes äÄ öÖ åÅ letters when editing. That pretty much sums it all up.

    noel (Administrator): We’re aware of the issue and will fixing this in the next release.


    But I am still unsure: This problem then occurs only with WordPress MU?

    #50625
    marcaurel75
    Participant

    I deactivated the BP-plugin. Problem remains. So it’s probably an issue with WordPress MU and the P2-theme?!

    #50623
    Paul Wong-Gibbs
    Keymaster

    Try removing or disabling BuddyPress. Does this problem still occur on WordPress MU?

    #50618
    Mike
    Participant

    yep, you can with some css. the parts you wanna tweak are #header and #main, if i remember correctly. you can also download the Avenue K9 theme from this page https://buddypress.org/extend/themes/ to help you get started, which is optimized for those pesky 1024×768 screens.

    mumbler
    Member

    Thanks!

    Do I have to go to the directory or can I browse fromthe wp-admin to here:

    wp-content/themes/bphome and wp-content/bp-themes/bpmember

    #50601
    r-a-y
    Keymaster

    I guess I shouldn’t have led you down the Sandbox road!

    I should have said look at those functions as a structure… don’t use it literally as most of that code is WP-specific only.

    As for these lines:

    global $bp;
    echo $bp->current_component; //outputs current component
    echo $bp->current_action; // outputs current action

    They are BP-specific and will let you determine what type of BP page you’re on (except for directories)… try it by putting the lines in the header.php of your BP member theme.

    I would use the lines in your new CSS class function like this:

    function bp_body_class( $print = true ) {
    global $bp;

    if ( bp_is_page( BP_MEMBERS_SLUG ) )
    $c[] = 'members';

    //more conditionals here

    $c[] = $bp->current_component; //outputs current component
    $c[] = $bp->current_action; // outputs current action

    // Separates classes with a single space, collates classes for BODY
    $c = join( ' ', apply_filters( 'body_class', $c ) ); // Available filter: body_class

    // And tada!
    return $print ? print($c) : $c;
    }

    Something to that effect in your bp theme’s functions.php file.

    That’s basically 90% of the function right there.

    #50596
    peterverkooijen
    Participant

    What are these lines supposed to do?

    global $bp;
    echo $bp->current_component; //outputs current component

    echo '<br />'; // redundant line break! don't worry about this line!

    echo $bp->current_action; // outputs current action

    I see nothing like that in the functions in post-template.php or Sandbox’ function.php.

    Edit: Class on Members and Groups stays at “directory” because it is set in bp-themes, not bphome. It is set with this line:

    <?php if ( bp_is_directory() ) : ?> class="directory"<?php endif; ?>

    Replacing it with the function copied from Sandbox…

    plrk
    Participant

    You’ll have to replace the image. You have to replace the logo image files in wp-content/themes/bphome and wp-content/bp-themes/bpmember

    plrk
    Participant

    you can put your changes in a custom.css file in the theme (the same folder as the style.css) file. that way your changes will not be lost when you upgrade the themes.

    note that there are two theme folders, one for the home theme and one for the member theme.

    academatic
    Participant

    wp-content>themes>bphome theme>style.css

    #50582

    In reply to: changing logo

    plrk
    Participant

    have you replaced the logo file in the image directories of both the home theme and the member theme?

    #50574
    krakrbozz
    Participant

    got it,

    just moved all the bp-themes under themes

    #50573

    In reply to: default theme colors

    plrk
    Participant

    buddypress uses two themes – the home theme, which you have edited, and the member theme, which you can find in /wp-content/bp-themes/bpmember/.

    #50568
    peterverkooijen
    Participant

    Thanks r-a-y!

    I’m not really a coder, but Sandbox has a lot of information on the topic.

    I’ll look into it when I have time and will report back…

    #50567
    r-a-y
    Keymaster

    I have WPMU setup in the root, but wanted to have the “community” page on a different page as well.

    Here’s what I did:

    1. Create a new WordPress page template with the BP widget toolbar calls in it.
    2. Create a new WordPress page and apply the page template you created in step #1.
    3. Add BP widgets to the BP widget toolbar.

    That should be it!

Viewing 25 results - 28,076 through 28,100 (of 31,072 total)
Skip to toolbar