Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 24,001 through 24,025 (of 32,561 total)
  • Author
    Search Results
  • #85346
    somoso
    Participant

    i’m trying to install buddypress and i get this error on the bottom of my screen during step 3: “Fatal error: Call to undefined function bp_core_is_multisite() in /home2/ihearta1/public_html/wp-content/plugins/bp-template-pack/bp-template-pack.php on line 188” Please help!

    #85341
    r-a-y
    Keymaster

    Silly question, but you do have BuddyPress activated on your site right? This is one of the first things that is fired when you have BP activated.

    *Edit – Paul, you’re one step ahead of me!

    #85338
    Paul Wong-Gibbs
    Keymaster

    Is the main BuddyPress plugin active? Which version are you using?

    @johnjamesjacoby We probably need to update Template Pack to check it works ok with the current point release, but as far as I know it still should work.

    #85336
    royc
    Member

    Anyone?

    Paul Wong-Gibbs
    Keymaster

    Hi Simon
    No, that’s about as specific (and mysterious) as you’re going to get. If you aren’t using the BP-Default theme (unedited), switch back to it. Does the problem go away?

    If it does, have a look at your actual theme’s functions.php, or post a link to it from pastebin.com

    r-a-y
    Keymaster

    It could be a problem with your server. However, this most likely means you have a broken link on your site.
    Check your theme for broken images, stylesheets, etc.

    If you have access to the server error log, you can find out specifically which file is the culprit.

    r-a-y
    Keymaster

    What do you have listed in your first profile group?

    And yes, Paul is correct, you can modify the registration template in your child theme — /registration/register.php — to add additional groups. You just have to modify two lines in that template for this to work.

    Paul Wong-Gibbs
    Keymaster

    Or, you can make the appropriate changes to the bp-default/registration/register.php template file in your (child) theme. Let us know if you need a pointer for that.

    r-a-y
    Keymaster

    @elizawhat – You need to finish your upgrade from WPMU to WP 3.0 properly.

    Read and implement everything listed here:
    http://developersmind.com/2010/06/17/upgrading-wordpress-mu-2-9-2-to-wordpress-3-0/

    elizawhat
    Member

    @justbishop You’re not seeing this warning on your Dashboard?

    http://ekbdesigns.com/images/buddypressthemenotice.jpg

    @djpaul I have no idea what you’re talking about when you refer to “custom menu support.” See the image above to see the security issues I was talking about in my initial post. Thanks for the file path.

    #85266
    rich! @ etiviti
    Participant
    #85251
    Hugo Ashmore
    Participant

    The reference in the two posts above yours is saying that the simplest approach is to edit the file entry.php in the /activity folder of the theme; this would be preferably done as a child theme i.e a copy of the files in a new theme directory you would then be looking for lines such as:

    <a href=”<?php bp_activity_comment_link() ?>” class=”acomment-reply” id=”acomment-comment-<?php bp_activity_id() ?>”><?php _e( ‘Reply’, ‘buddypress’ ) ?> (<span><?php bp_activity_comment_count() ?></span>)</a>

    and removing them or placing some form of conditional statement around them – I removed all links for a copy of entry.php which I pulled onto a custom frontpage but allowed the links for the activity stream as a directory view.
    It’s a little long winded but straightforward

    #85250

    In reply to: Child of Child Theme

    deadlyhifi
    Participant

    OK thanks. I can get around it by having one theme and altering things based on $blog_id;

    #85249

    In reply to: Child of Child Theme

    Paul Wong-Gibbs
    Keymaster

    Child child themes aren’t supported in Buddypress

    #85241
    Marco Giustini
    Participant

    You mean that the secondary sites’ themes must contain do_action( ‘wp_footer’) ? Where?

    #85236

    In reply to: Custom URL’s

    Anton
    Participant

    Thanks @nuprn1 it’s also on the default theme groups/create.php so will have to change it there as well?

    #85234
    Hugo Ashmore
    Participant

    The article is pretty clearly written really.

    It says look at the bp-core-adminbar.php file as a point of reference, here is where the menus are constructed and clue you in to how they are added to the actual pages via the action hooks.

    If you simply wanted to remove an action as the page describes you would simply add an opposite action i.e:

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

    Further it explains that you can now create a new function based on the existing one and is where examining the original file is useful, you can simply copy the whole function bp_adminbar_blogs_menu() paste it into a child themes function.php file rename the function slightly bp_my_adminbar_blogs_menu() make whatever modifications you want within the function then add itback into the mix via a new add_action so you remove original:

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

    ## create new function ##
    function bp_my_adminbar_blogs_menu() {

    }
    ## add new function to admin menubar ##
    add_action(‘bp_adminbar_menus’, ‘bp_my_adminbar_blogs_menu’, 6);

    You add mods such as this to functions.php file as this way you ensure that you do not have to continually re-write them in a core file, core files should never be changed as each new BP version will replace the files and any adjustments will be lost, working in a child theme ensures these changes are preserved and continue to work after version upgrades.

    #85228
    bpisimone
    Participant

    & I’m with @gregfielding here, we absolutely need a custom background for group pages. Why don’t you use the perfect add_custom_background(); for wp 3.0, just translate it to work from the frontend?

    #85226
    bpisimone
    Participant

    What’s the latest development here @rustybroomhandle?

    #85215
    r-a-y
    Keymaster

    If you’re using BP 1.2, try:
    bp_is_my_profile()

    This doesn’t exist in the BP 1.1 series (which I’m guessing you’re still using), so here’s the complete function that you can plop into your theme’s functions.php:
    http://pastebin.com/nfm8WFVf

    #85206
    rez
    Participant

    I did an uninstall (delete) of my current BP plugin, and downloaded 1.2.5.2 again and did a fresh install. still seem to have the same problem.

    #85205
    rez
    Participant

    my apologies, I should’ve been more specific in my first post — I’m running 1.2.5.2, which I think is the latest release — just downloaded it today.

    #85203
    r-a-y
    Keymaster

    This issue is addressed in the newer releases of BP.
    Please use the latest release and report back.

    #85174
    Hugo Ashmore
    Participant

    Doesn’t necessarily work like that, some rulesets are within a block of generic table styles, some within other sections, you won’t find a specific block of styles to easily lift out. Really your best approach if you are building as a child theme is to call in the default.css and then overwrite it with your styles in styles.css or custom.css, as you do that you can, if necessary, remove default styles as you identify them.

    Using Firebug doesn’t force you to rebuild anything if you follow the general approach that is intended when using a custom.css, you still use default.css then use Firebug to identify the ruleset styling an element and copy the selectors to custom.css and style to your requirements, remove the original default rulesets if you want to or simply leave them in place.

    #85170
    jlister76
    Member

    +2
    wp3.0 – mutisite enabled – no plugins (except buddypress 1.2.5) – Buddypress default theme

Viewing 25 results - 24,001 through 24,025 (of 32,561 total)
Skip to toolbar