Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 28,501 through 28,525 (of 31,073 total)
  • Author
    Search Results
  • #47881
    vito687
    Participant

    1. Which version of WPMU are you running?

    2.7 official not svn

    2. Did you install WPMU as a directory or subdomain install?

    directory

    3. If a directory install, is it in root or in a subdirectory?

    root

    4. Did you upgraded from a previous version of WPMU? If so, from which version?

    WordPress MU 2.7.1

    5. Was WPMU functioning properly before installing/upgrading BuddyPress?

    yes, still is

    6. Which version of BuddyPress (BP) are you running?

    1.0.1

    7. Did you upgraded from a previous version of BP? If so, from which version?

    1.0 and prior to that RC2

    8. Do you have any plugins other than BuddyPress installed and activated?

    Bp-TOS (terms of service) which is the only possible interference

    9. Are you using the standard BuddyPress themes or customized themes?

    standard Bp-theme only css edited

    10. If running bbPress, which version?

    latest

    11. Please provide a list of any errors in your server’s log files.

    none

    Problem is as stated in post above

    #47880
    Burt Adsit
    Participant

    The theme is missing the call <?php wp_footer() ?> in it’s footer.php file.

    #47874
    Jeff Sayre
    Participant

    Dan, read this thread for some possible insight and ideas: https://buddypress.org/forums/topic.php?id=3173

    Paul Wong-Gibbs
    Keymaster

    Have you tried copying the functions.php from the default theme to your custom theme?

    #47853
    Jeff Sayre
    Participant

    Okay, I missed the fact that you were working within a template. It thought you were looking to create a widget.

    Instead of creating a function within bp-custom.php, you can place this is your template file. I assume that you have made a copy of the default themes and are modifying your copy, not the original.

    Change this one line:

    <a href="<?php bp_the_site_member_link() ?>"><?php bp_the_site_member_avatar() ?></a>

    To this:

    <a href="<?php bp_the_site_member_link() ?>"><?php echo bp_core_get_avatar( bp_get_the_site_member_user_id(), 2 ) ?></a>

    Burt Adsit
    Participant

    What blog are you on and what is the url that breaks when you select one of the directories? What exactly is the error message? Did this work before? What theme is this?

    #47846
    Jeff Sayre
    Participant

    Do you have any plugins other than BuddyPress installed and activated. If so, you need to distill your environment down to the lowest common denominator: Use the default BP themes that come with v1.0.1 and deactivate all other plugins.

    What happens then? If you do not have any more issues, then you know it has something to do with your custom theme, one of the plugins, or some combination.

    You then start going back up the ladder one step at a time. Switch the default BP themes for your custom themes. Does the problem return? It not, then is has to do with your plugins. Activate one plugin at a time until the issue returns.

    Here’s a thread where Paul talks about a similar error message and plugins: https://buddypress.org/forums/topic.php?id=2802#post-15313

    Let us know how your testing goes.

    #47844
    peterverkooijen
    Participant

    This seems to word for including a php file:

    <? include get_option(‘home’).’/common/whatever.php’; ?>

    And adding this to header.php in the theme also seems to work:

    ‘<script src=”<? echo get_option(‘home’) ?>/common/js/whatever.js” type=”text/javascript”></script>’

    Best solution?

    #47842
    peterverkooijen
    Participant

    Thanks! That’s pretty straightforward. I’ll use that a lot!

    #47840
    Paul Wong-Gibbs
    Keymaster

    Test with the default home and member themes – does the problem still occur?

    #47839
    Sven Lehnert
    Participant

    bp 1.0.1

    wpmu 2.7.1

    my own theme based on the bpmember from a earlier version of bp.

    But I did al needed changes with every update, so the theme works all around. just this part is lost and I don’t see the bug in the theme, because there is no template file for the general settings page. or I don’t know…

    #47838
    Burt Adsit
    Participant

    bp, wpmu versions. themes being used?

    #47835
    Burt Adsit
    Participant

    You get to have one or the other basically. It doesn’t cause conflicts, they both can’t be occupying the same space.

    #47832
    abcde666
    Participant

    Hi Jeff,

    many thanks for your answer !

    1)

    I still do not understand what is the difference between the “skeleton” and the other themes ?

    Is it literally the same ?

    2)

    Also, if I save a copy of the original theme “bp_home” with a different name (e.g. bp_home_erich), how do I make sure that the system will use my custom-theme (bp_home_erich) instead of the original theme “bp_home” ?

    Do I need to change the code somewhere so that my custom-theme is considered by the software ?

    Thanks again,

    Erich

    #47829
    Paul Wong-Gibbs
    Keymaster

    I sometimes think we shouldn’t bundle the Skeleton theme with the BuddyPress .zip. It confuses some people.

    #47826
    r-a-y
    Keymaster

    It’s a CSS issue, suleiman.

    You’ll need to either modify the bp core admin bar CSS or add a CSS rule to your bbPress theme’s CSS file

    #47824
    Ainun Nazieb
    Participant

    Thanks Jeff.. It really works..

    Unfortunately it’ll make a double effort for the theme user..

    But, I think it’s no problem for them.. :)

    Thanks

    #47817
    Burt Adsit
    Participant

    Well, you could always encapsulate the navigation.php code into a function and just call that function from both places.

    funciton my_nav_stuff(){

    ?>

    .. all the stuff from navigation.php…

    <?php

    }

    Stick that in bp-custom.php then in both themes <?php my_nav_stuff() ?>

    The template path gets hijacked when a user goes into the member theme. It gets set to /bp-themes. When they go out of it it’s back to normal again /themes. That wouldn’t work for pointing to a file.

    #47815
    Jeff Sayre
    Participant

    @Erich

    You are free to use the Skeleton Theme or an existing theme as your template in designing a new BP theme. The Skeleton Theme is a bare bones theme. It has the minimum header and footer code, and function set to make things work. So, if you are using a non-BP theme and trying to turn it into a BP theme, you should either look at the Skeleton Theme or the default themes that come with BP to see what is needed.

    Concerning the default themes that come with BP–the bphome theme and the bpmember theme–you can also use those as templates for your new custom themes.

    My standard caveat when creating custom themes from the default BP themes is as follows:

    Make sure that you make a copy of both bphome theme and bpmember theme. Your customizations should be done in copies, not the originals. The copies need to have unique names. Do not rename the default themes. They stay unchanged. That way, if you have issues with your custom themes (and we all do when working on customization), you can switch back to the standard BP themes to see how things should work.

    #47804
    3206013
    Inactive

    Thank you, add wp_footer() did the trick.

    #47793
    gwsa
    Participant

    Burt & Mike –

    Thanks for the prompt reply. Tried upgrading both manually and with the built-in plugin install function. Also tried clearing out the BP tables from the database (the site has not launched yet) hoping that would kick things into shape.

    2.7.1 was the first and only version of WPMU installed, upgraded BP from 1.0 to 1.0.1 and that’s when the themes died. Also, no hyphens in the themes’ directories.

    Went through the code and was able to see what you were talking about in terms of setting the theme_root variable to /bp-themes/, but any idea why it would be doing so outside of member pages?

    If the plugin is active, if I go to /wpmu-themes.php or /wpmu-blogs.php? in the WPMU backend, to activate themes all I see are the BP themes. Correct me if I’m wrong, but before it would also show me themes in the /themes/ directory as well. Is this an intended function? I’d prefer not to move my non BP themes into the bp-themes/ as disabling BP would then kill the site.

    Any help you could provide would be greatly appreciated.

    – Ben

    (ben at gwstudentassociation dot com)

    #47791
    Jeff Sayre
    Participant

    Try placing your function in bp-custom.php. If that file does not exist, create it and place your function code there. This file should be placed in /plugins/. It will be loaded before anything else–see bp-core.php line 10 and 11.

    #47790
    3206013
    Inactive

    Hello,

    Thank you for your reply, themes are (depo-clean and TerraFirma ), one more question does using WordPress admin bar will cause conflict ?

    Thank you

    #47788
    Burt Adsit
    Participant

    What theme are you having problems with?

    #47787
    Burt Adsit
    Participant

    Every theme is written differently. Generally speaking it should be located in footer.php.

    From the default Kubrick theme’s footer.php we have:

    <!-- Gorgeous design by Michael Heilemann - http://binarybonsai.com/kubrick/ -->
    <?php /* "Just what do you think you're doing Dave?" */ ?>

    <?php wp_footer(); ?>
    </body>
    </html>

Viewing 25 results - 28,501 through 28,525 (of 31,073 total)
Skip to toolbar