Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 27,976 through 28,000 (of 31,072 total)
  • Author
    Search Results
  • #51301
    Jeff Sayre
    Participant

    WP Remix is a premium theme. You will need to go ask the 3rd-party developers of that theme if and when they plan on offering BuddyPress support to their themes. You’ve paid money to them, they should help you.

    I’m setting this to resolved as it is an issue with a 3rd-party theme and not BuddyPress.

    #51296
    Mohit Kumar
    Participant

    Create a blog with P2 theme, Use the contributor-blogs plugin to add users into that blog.Each time the user sign in it automatically ads to that blog as an contributor.Hope it helps. I have tried this and is working with P2 theme

    #51257

    Yipes! I tried trunk installing off SVN and it borked me with the old ‘cannot modify headers’ blarg.

    Darn it, I love child themes and can’t wait for this one!

    #51254
    Jeff Sayre
    Participant
    #51253
    neillwatson
    Participant

    Thanks, Shelly. I’ll keep working on it… :-)

    #51250
    Shelley Keith
    Participant

    There are 2 parts to BP themes. One is for the “home” area, and the other for the “member” area. You’ll need to upload and apply the theme(s) correctly to get site-wide coverage.

    #51244
    morgenvrij
    Member

    Hmm have to figure out if i’m running on appache or not, no knowledge of that..

    I am not using a custom theme yet so that’s not the problem (yet).

    Any other tips?

    #51243

    In reply to: New Groupblog Plugin

    Mariusooms
    Participant

    * Deactivate plugin

    * Rename ‘buddypress-group-blog’ to ‘bp-groupblog’

    * Make sure the ‘groupblog’ folder is moved to your active member theme as explained in the readme.

    P.s. The plugin accidentally was added to the wp repository under the wrong name. It is currently being rectified so that the path will actually be correct in regards to the plugin name, namely bp-groupblog.

    #51229
    Jeff Sayre
    Participant

    You can either use the default BuddyPress parent theme (which is actually called bp-sn-framework) and child theme, use the default parent theme with your own child theme, or use the parent theme to make your own, custom parent theme and then add your own custom child themes.

    #51226
    James
    Participant

    With the structure that is going to be implemented, does that mean you’ll have to use the “default” buddy press theme, and do your own customizations, or can you upload your own theme, and integrate the buddypress layout into it?

    #51220
    Jeff Sayre
    Participant

    Your welcome.

    #51211

    For a private setup, or one that you won’t be reusing for another client, what I do is create a hidden group and invite the special users into it. When they accept the invitation, you can then build your plugins around checking for people being in that group.

    Something simple like…

    <?php
    define('SPECIAL_GROUP', $your_groups_id);

    function is_user_special ( $user_id ) {
    if (!$user_id) {
    $user_id = bp_loggedin_user_id();
    }
    if ( groups_is_user_member($user_id, SPECIAL_GROUP) ) {
    return true;
    }
    }
    ?>

    …usually does the trick for me?

    #51210
    David Lewis
    Participant

    I think the only way you could have a 1-click option would be if… at some point… there were a buddypress.com like wordpress.com. That said… all of these projects are auttomatic projects… so maybe at some point in the future they will all merge into one product? Who knows.

    #51208
    Jason Giedymin
    Participant

    @Erich73

    ==bugs==

    I suggest using trac for any bugs.

    ==user blogs & design==

    User blogs are run by MU. If you want to retain a ‘similar’ design you could:

    • draft a wp theme using similar colors etc…
    • perhaps use a global footer or manually add in some sidebar widgets to force show some site-wide bp content
    • flag this theme as the default
    • flag this theme as the only theme ‘turned on’ via site-wide admin

    ==1 Package==

    I agree, yet also disagree on your suggestion.

    It wold be very efficient to have a turn-key bundle. It would surely make many people’s lives easier. However to do so now would be very difficult for the existing devs. Now it absolutely doesn’t stop anyone else from doing it however.

    Having a bundle offered by the .org sends the message that all apps are 1 wholly integrated unit. That will also require webserver, php, mysql integration for a turnkey solution (how many times do we see “i need help with X re-write”.) Also on support, this type of product would deserve a single forum, a single user group, plug-in pages, etc… At the moment It’s now quite there yet. As I understand it, this is a goal for the .org long term. Not to sure about the backend integration however.

    As you, I also see the many frustrations which users do experience. I try to help support the community as much as possible, may it be cross app integration, patches, other info, and in some cases monetary and personnel donations to many of the backends I just described.

    This is what makes open source great, it allows users such as yourself who come up with an idea which benefits the community to start working on it. I no doubt believe a project such as this would get support from various existing communities and users.

    Go for it!

    #51188
    abcde666
    Participant

    1)

    I do have BP-version 1.0.1 running on a site and have made a few customizations so far (just CSS-changes and some images).

    So with the new template-structure: should I delete the current install completely and get the BP-version 1.1 installed ? I mean: what is the best way to upgrade to the 1.1-version when it will be released in the next few weeks ? I definitely want to have the new template-structure, so I guess I would need to set-up my website from scratch, right ?

    And: I am running the site in german-language only.

    2)

    will this new template-structure also make it easier to design a custom-template for the user-blogs ?

    Like I would like to have the user-blogs having the same CSS-style as my main pages ?

    I still have not been able to figure how to do this. I would like the user-blogs to have the same design in order to have a consistent website.

    Why is this not already the case at http://www.testbp.org ? Why is it still the original WordPress-design ? Is there a chance you create a plugin or something at which the Admin is able to select to chosse the design of the “User-Blogs” like choosing from “WordPress original design” or “TestBP.org design” ?

    3)

    is there a chance to have a “package install” which will have ONE package which will include all latest software: WordPress 2.8.x, BuddyPress 1.1 and BBPress ?

    I read many post where I see people having troubles integrating the BBPress-software into the system (even an experienced BP-expert had troubles).

    Is there a chance you will create a 1 Package download which will make it very easy for people to have a full website (like http://www.testbp.org) installed ?

    So literally 1 click-download will create a ready-made website, same like testbp.org ?

    4)

    a user-request to get invited into a “Private Group” is not possible being accepted. This does not work yet at my installation and I think this is a general bug.

    5)

    the wording of “Blog” and “Blogs” is confusing. In both english and german language.

    Many thanks,

    #51184
    Korhan Ekinci
    Participant

    Just was starting on tdo mini forms plugin (uploaded and activated), my forum page disappeared! :)

    #51183
    jedbarish
    Participant

    Jeff, I appreciated your details! I ll test it out to use bpthemes while WPMU DEV should be able to update for next release :) Im really looking forward to see a better photo album plugin for BP only. Thanks again!

    #51182
    Alex
    Participant

    I’m currently porting over a custom theme I was developing to the new parent/child setup, but this happens even when I use ‘BuddyPress Default 1.1-pre’.

    #51180
    tiptap
    Participant

    Ok so I created;

    /wp-content/plugins/bp-custom.php with the below in it;

    /**
    * bp_check_usertype()
    * TEMPLATE TAG
    *
    */

    function bp_check_usertype($userID) {

    global $bp, $wpdb;

    $qry = $wpdb->get_var("SELECT value FROM wp_bp_xprofile_data WHERE field_id = 5 AND user_id = " . $userID);

    /* Sort the nav by key as the array has been put together in different locations */
    echo $qry;

    }

    However when I call it in /bp-themes/mymember/profile/index.php like so;

    $bp->bp_check_usertype($bp->displayed_user->id);

    I get the following error

    Fatal error: Call to undefined function: bp_check_usertype() in /html/wp-content/bp-themes/mymember/profile/index.php on line 31

    Am I missing something?

    #51173

    The way this works is actually really super easy and very, very awesome…

    There are a few different variations of ways to do this, and I can see some really imaginative uses of this method doing some really fantastic and super awesome things, so if you’re not already, I suggest you get excited…

    I think the way that most people will use this method is with the included BuddyPress Framework theme as a jumping off point. Think of it as the HTML and bare-bones styling to get your site’s root blog and BuddyPress profile/directory pages up and running. It includes all of the normal files you would expect from a typical WordPress theme (single.php, comments.php, page.php, index.php, home.php, attachments.php, etc…) plus it includes all of the theme files for BuddyPress registration pages and components in their own respective folders similar to what bp-member did.

    Currently, parent/child template relationships do NOT include the parent template’s style.css, so if you’re making a child theme, you will need to manually include the style.css of your parent theme with an @import rule, but it takes 2 seconds to type in so no big deal.

    So that means that your parent/child relationship is really only for .php files until you manually @import a CSS file from another directory.

    To answer your question about multiple parent themes, yes and no. :)

    Lets say we have three themes: bp-framework, bp-default, and bp-child.

    Each theme/template can only name off one parent, but that doesn’t stop the parent theme/template from having its own parent also. Example: bp-child could name bp-default as its parent, and bp-default could name bp-framework as its parent, and they will recursively overrule each other down the parent/parent/child ladder with the current template winning at the end.

    This works well in situations where you might not need a home.php for your child themes. Home.php is a WordPress file for hardcoding the landing page of your blog, and maybe child themes don’t need one. In that case, move home.php into a “bp-home” folder with a style.css that makes the bp-framework its parent and includes the parent style.css, assign bp-home as the theme for your root blog, and you’re done. This way the other blog themes won’t have a home.php for no reason.

    Because of this, it’s possible to have themes inherit from multiple other themes if you plan ahead in such a way that allows for this. My experience with this idea and creating my own framework is that it takes a little pre-production planning, but it pays off big time later on.

    The other crazy fluke is that parent themes don’t need to be active in the Site Admin area. This means that you could have child themes active for users to select without allowing them to select the parent theme, and still have the parent theme’s files be accessible to the child. This really gives you a better way to control the themes that users have access to and how they work with your custom framework to keep your header/footer/other files in sync.

    I personally can’t wait to see what some of the more popular WordPress theme guru’s are able to pull off with the next version of BuddyPress.

    #51158
    Korhan Ekinci
    Participant

    yes RAY, ok, I understand, working on bp for hours each day and get confused with silly things sometime, sometimes solutions are very easy.

    I actually deleted the links manually from the theme files, but yes, I do see it now. Thought by disabling bp component setup would disable forums all together :)

    And thank you Gerikg!

    Yes, I think it is much more clean to have forums and groups separated. Let groups do what they want there, right? They have the wire and the group blogs (with bp 1.1 hopefully).

    It would off course be so cool to have wires supporting videos and images. Hopefully someone comes with a plugin for that soon!

    #51157

    In reply to: Help with new function

    Jeff Sayre
    Participant

    Okay, several issues to discuss here:

    1. I created a new function in wpmu-functions.php

      Why modify a core WPMU file to be used in a BuddyPress theme file? Instead, create this function in your bp-custom.php file. That why, when you upgrade BP, your changes will not be lost–assuming that you do not delete your bp-custom.php file.

    2. The user ID field does not contain string content. So:

      u.ID = %s

      should be

      u.ID = %d

    3. What you are after is grabbing a member’s ID and then using that to pull their login name (username). I don’t think that the variable $username is available for the function call–at least not the way you are trying to reference it. I would use this instead:

      $bp->displayed_user->id

      You will need to declare bp as global in your members-loop.php file.

    #51155
    Jeff Sayre
    Participant

    @mat_

    So now, can i start using that new architcture ? how ? do i have to download the last build from the trac ?

    You have two options: install the latest trunk from SVN, or wait for version 1.1 to be released in the next few weeks.

    @Andre

    Will it still be an option to use any WP blog theme (with BP widgets) for “home” in conjunction with the BP (child) member theme?…And how would that even work, if the “home” theme (i.e. a good old fashioned blog theme) potentially has its very own parent theme? Can a child theme have two parents?

    Any well-designed WP theme can be used as a parent theme. Unlike with us humans, child themes can only have one parent theme. Of course, a given parent theme can have many child themes.

    Here’s a useful article on making child themes that goes into great detail. Especially look at the resources he provides at the bottom.

    Perhaps jjj can chime in here as he is the consummate theme designer–much more so than I.

    #51146
    devweb
    Participant

    Hi Baraber,

    yes you can, go into your BP install and find the folder under themes for the theme you are using, then under ‘profile’ -> index.php you can remove or comment out items of code that correspond to components to remove them.

    All the components are fairly self explanatory so you shouldn’t have a problem finding them.

    Hope that helps

    #51142
    Andre
    Participant

    To clarify things in my mind, can you (Jeff, or anyone else) explain the implications of moving to BP parent/child themes for sites that do not currently use a bphome theme?

    Will it still be an option to use any WP blog theme (with BP widgets) for “home” in conjunction with the BP (child) member theme? Or will the “home” theme also have to be a child of the BP parent theme?

    And how would that even work, if the “home” theme (i.e. a good old fashioned blog theme) potentially has its very own parent theme? Can a child theme have two parents? Or is this completely irrelevant because the “home” theme stands on its own since it’s not relying on any BP hooks if it’s strictly using widgets?

    Please excuse my ignorance of WP parent/child themes. I wasn’t even aware of them until a few days ago.

Viewing 25 results - 27,976 through 28,000 (of 31,072 total)
Skip to toolbar