Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 67,201 through 67,225 (of 68,948 total)
  • Author
    Search Results
  • #39138
    alainhc
    Member

    Hi, I´m interested in making my own buddypress-home theme and buddypress-member theme, to fit my web site. I´ve been looking for information on the web, but I have not found anything good. Anyone has some kind of tutorial about it?

    Alain

    alainhc
    Member

    Hello everyone. Hi Burtadsit. I´ll try to explain using my poor English, I´m cuban. The error occurs in a Clean install, when you activate the home theme and try to visit the root blog, or the blog of any user previously created.

    The page show the following error:

    Warning: require_once(C:sitiossitiosocial/wp-content/member-themes/buddypress-home/index.php) [function.require-once]: failed to open stream: No such file or directory in C:sitiossitiosocialwp-includestheme.php on line 822

    Fatal error: require_once() [function.require]: Failed opening required ‘C:sitiossitiosocial/wp-content/member-themes/buddypress-home/index.php’ (include_path=’.;C:xamppphppear’) in C:sitiossitiosocialwp-includestheme.php on line 822

    How you can see, the application doesn´t found a buddypress-home directory inside member-themes. So, we solve this making a copy of the buddypress-member and renaming it to buddypress-home.

    Changing the topic (I know this is out of forum). I´d like to make my own buddypress-home theme, and buddypress-member theme. Do you have any documentation about it???

    Alain

    #39136

    Well, it could really go in a few different places. Let me take a look when I get to work to see where will work the best.

    Here on BuddyPress, the “admin bar” has been nick named the “buddy bar.” It actually replaces the typical “admin bar” from a normal WPMU install.

    The files for it can be found in the bp-core directory if you needed to modify it for any reason.

    The buddy bar is actually loaded very last in the DOM, and it is absolutely positioned to top 0, so its essentially hovering over the body contents. Because there are at least two active themes at any given moment (home and member) you could either throw the css into homethemedir/css/site-wide.css, or all of the base.css for each theme.

    But let me double check for certain. :)

    #39134
    reprocessor
    Participant

    Hi John,

    I GOT IT! Eventually LOL.

    I did a bit of digging on the forums and saw this thread https://buddypress.org/forums/topic.php?id=471&page=2#post-5680 – I didn’t realise I needed to be logged in to both BP & BBPress to do this. Once I saw DJpaul’s first post on this thread the penny dropped.

    Thank you for all your help – everything works a treat now!

    Best regards,

    Phil

    #39131
    alxdesign
    Member

    Alright, thank you. I’ll report it.

    I find it strange though, since I tested to run a <script> on the buddypress demo, and it didn’t work. Are you sure there isn’t some function I’ve accidentally allowed?

    #39126

    In reply to: Modify BP links

    Burt Adsit
    Participant

    This thread points to a domain mapping plugin for wp.

    https://buddypress.org/forums/topic.php?id=1493

    #39124

    In reply to: Modify BP links

    nzmitch
    Member

    Any progress on this?

    I’d like to install BuddyPress on a subdomain too (the top domain is a public website).

    Would be an awesome feature! :)

    #39123

    I think this plugin would be very important because every community that grows will need multiple databases otherwise everything won’t get bigger..

    I hope Nicola or Andy will do something in this way..

    #39121
    Per Søderlind
    Participant
    #39117

    buddypress-member/css/base.css – line apx 495 – Make that be…

    .main-column h1 a, #blog-info h1 a {
    color: #646464;
    margin: -120px 0 0 200px;
    position: absolute;
    }

    #39113

    buddypress-member/css/base.css – line apx 477 – remove

    float: left;

    bp-core/css/structure.css – line apx 110 – remove

    float: left;

    bp-core/css/structure.css – line apx 64 – remove

    margin-left: 200px;

    Give that a shot?

    #39111

    In reply to: BP Avatars in bbPress

    Burt Adsit
    Participant

    Hi John. :)

    I have to test the xprofile stuff on the bbpress template tag level. I think I’m transferring data that could be serialized in $field_obj->data->value. Gotta check that.

    This thing needs chat. You ever on IRC? A bunch of us hang out in irc.freenode.net #buddypress. I’m always there.

    #39109

    In reply to: BP Avatars in bbPress

    Burt Adsit
    Participant

    I like the inclusion of ‘signature’ in a profile field! Nice idea.

    I’ve updated bbGroups to optionally transfer all users over to bbpress meta or just users who are in groups. Skipping the bbpress/buddypress utility user.

    I’ve got all xprofile groups and group field values going to bbpress.

    Got a template tag that allows getting any of those values by user, group, field.

    Did some cleanup internationalization for text.

    Now doing testing. Gotta look into the problem with tags for hidden groups showing up in the tag cloud. I don’t think you’d be interested in any of this. You’ve already got that stuff implemented. :)

    I think that the only mod of yours I stepped on was the oci_get_user_filter() changes you included in there. I added another filter function oci_get_xprofile_filter($user) that adds all the xprofile fields to the $user array. It won’t break your mod, it’ll just add all the xprofile fields again.

    /**

    * oci_get_xprofile_filter()

    *

    * This filter adds all xprofile groups and group fields to bbpress

    *

    * @param <array> $user

    * @return <array> $user array for xmlrpc transport

    */

    function oci_get_xprofile_filter($user){

    $xprofile_groups = BP_XProfile_Group:: get_all(true); // all except empty groups

    foreach($xprofile_groups as $group){

    foreach($group->fields as $field){ // all fields for group

    $field_obj = new BP_XProfile_Field($field->id, $user,true); // this field

    // xprofile_groupname_fieldname to prevent conflicts

    $user = array(‘group’ => $group->name, ‘name’ => $field_obj->name, ‘value’ => $field_obj->data->value, ‘type’ => $field_obj->type);

    }

    }

    return $user;

    }

    add_filter(‘oci_get_user’,’oci_get_xprofile_filter’,10,1);

    #39105
    netspencer
    Participant

    anyway, the plugin should work but it doesn’t really keep the functionality of buddypress… for that we both need assistance… what the plugin does it esentially create an entire new site for wpmu, one that can have a seperate set of users and everything… i’ve been able to set up seperate buddypress set ups on both sites but havn’t’t been able to combine it…

    hope this helps!

    #39103

    Okay, so here’s a question…

    Do you think it’s possible to use this plugin, to have both subdomains and subdirectories with WPMU and BuddyPress?

    Lets say I use this plugin to map a blog to red.mydomain.com… Can I then map other blogs to that same subdomain, but have them utilize the built in subdirectory install method of WPMU?

    So I could have…

    red.mydomain.com/bob/

    red.mydomain.com/fred/

    red.mydomain.com/murphy/

    But also have…

    blue.mydomain.com/bob/

    blue.mydomain.com/fred/

    blue.mydomain.com/murphy/

    And have them be totally different blogs with totally different content, underneath the same MU install?

    I would create a subdomain in my hosting package to accommodate for it of course, but since MU would be setup to have sub directories, and I can map each blog specifically, unless I’m going crosseyed, I see this as doable.

    #39102
    netspencer
    Participant

    looks awesome… hope it works in buddypress!

    I’ll let you know how it works!

    THANK YOU SO SO MUCH!

    Anointed
    Participant

    Looking good Nicola.

    I love your plugins and the support you provide, it’s very much appreciated.

    btw

    Maybe an error with the forum software here?

    This post said it has 3 replies prior to me entering this one, however there are none.

    #39098

    In reply to: Translating BuddyPress

    Dedy Sofyan
    Participant

    First of all, BuddyPress is so promising. Keep up the good work!

    Currently, I’m involved in implementing BP for a local NGO, and I’m happy to share the translation files.

    I’ve done translating the “Bahasa Indonesia” for the RC-1 version and posted on the codex page:

    https://codex.buddypress.org/translations/indonesia-indonesian-id_id/

    Feel free to comment and correct any error.

    #39089
    dillahbaraja
    Member

    http://www.barajaonline.com It’s Baraja Online Community

    Burt Adsit
    Participant

    Hi people. The combo download for RC-1 from buddypress.org is fine in both the zip and tar.gz versions. Everything is where it should be. Just checked.

    When does this happen? Clean install, activate the home theme visit the root blog and then you get this error? Or does this only occur when you are in the member theme area such as your profile and then try to visit the home theme? For example you click ‘blog’ or ‘members’ buttons.

    I think that something is trashing a WP constant called TEMPLATEPATH that is created in wp-settings.php >> define(‘TEMPLATEPATH’, get_template_directory());

    It’s either not getting set correctly or it’s getting fubar’ed later, somehow.

    Have you tried activating a different theme for the root blog? Do you get the same error? Try just activating *anything* else other than the bp home theme and then do what you did to reproduce the problem.

    Trying to narrow things down. Lemme know.

    p.s. I flipped the red light switch on this thread so that others may join in the fun too.

    #39085
    Trent Adams
    Participant

    https://trac.mu.wordpress.org/browser/branches/2.7

    Zip at the bottom of the page or if you use SVN you can use that URL as well.

    Trent

    #39082
    Mythailife
    Participant

    And where is that downloaded?

    #39074
    Trent Adams
    Participant

    No, it can be tested by downloading the WPMU Branch of 2.7. It is not in trunk.

    Trent

    #39073
    Mythailife
    Participant

    Is that patch in the latest version of MU?

    #39071
    Doodlebee
    Participant

    Awesome – thanks so much – that’s *exactly* what I was hoping to hear :) (Yay – now I get to finally play with it!)

Viewing 25 results - 67,201 through 67,225 (of 68,948 total)
Skip to toolbar