Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 61,501 through 61,525 (of 69,046 total)
  • Author
    Search Results
  • #55091
    buddyin
    Participant

    i have installed Buddypress and WMu everything is working okay but i login as users all other link except home not working at all its shows page not found

    please help with this

    http://blogin.in/meme/

    thanks in advance

    #55088
    toddlevy
    Participant

    for bp_is_user_profile(), you can use this…

    <?php

    global $bp;

    if($bp->current_component == BP_XPROFILE_SLUG) {

    //Your code here

    }

    ?>

    Found this tip here… https://buddypress.org/forums/topic/show-specific-content-on-profile-page-only#post-26739

    #55087
    garynagel
    Participant

    thats still does not solve my problem

    I’ll try to explain my issue better I am testing buddypress for a school program and I need Super Admin (tech guy) and Admin (it trainers) Authors (teachers) to be able to create blogs, However there is not option to limit only admins to the create a blog option.

    Say Im a teacher and I ad a student in my blog as a subscriber

    that kid could now create a blog and it auto makes him an admin of the blog

    I need to be able to restrict subscribers and editors from the create a blog option but allow Super Admin, Admin, and Authors access to the create a blog.

    I don’t wish to give any Teachers super admin access that would open up trouble in itself.

    #55085
    gsmith6673
    Participant

    socialpreneur, this went away when i decided to allow users/members to choose their own skins/theme (different from home page theme).

    unrelated and if i need to start another thread i will, how/where to add an image to the header area of the (maybe change the font type and size?) …might be in the css? default bp theme?

    for those who are beginners, a small sample bit of code would work wonders…or shoot me in the right direction for a simple tutorial already formed by the great bp staff here at buddypress.org!

    #55084
    Mark
    Participant

    FYI- I also have no recent activity reported here at buddypress.org. The last entry is from a 2 months ago. I probably have about 10 posts since then but they are not reported at:

    https://buddypress.org/developers/markschafer/activity/

    May also be related:

    https://buddypress.org/forums/topic/forums-acting-up

    #55080
    smuda
    Participant

    dosn’t work for me neither.

    i added the code to functions.php and the fun file in “bp-sn-parent” and the child theme (and both), system alsways says “not found”

    #55077
    ziggity
    Participant

    hey guys, i REALLY need to be able to do this. i followed all the instructions exact but it’s not showing up, just getting the home page. I’m wondering if it has to do with putting the SLUG in the navigation code? anybody have any ideas?? i even put the services.php page i created in every directory, still no dice. i worked with the bp-sn-parent/functions.php, put the services.php in bp-sn-parent, themes, themes/mytheme, and wp-content.

    #55076
    ziggity
    Participant

    this is cool but what if i have a page with some php and HTML code i wrote on it? how do i link to that and have it be in the buddypress template? i found another thread about it https://buddypress.org/forums/topic/make-your-own-custom-buddypress-page but it’s not working and nobody’s come up with a solution for it yet.

    5118012
    Inactive

    following on this topic, is there a way to remove the buddypress bar from the tld.com and leave it on members.tld.com ? or just adjust the available links on that bar.

    Thanks

    #55054

    In reply to: BuddyPress i18n Topics

    takuya
    Participant

    How does bp’s slug (i.e group slugs) work?

    Are they relying on WordPress, or does bp has some sort of custom function? I just came across a wordpress plugin, which might solve the group slugs problem. But need to know how bp works.

    #55049
    Arx Poetica
    Participant

    Oh, I failed to mention Will Norris, who already wrote an OpenID plugin for WordPress, which works pretty good, but seems to be missing a few key features.

    There’s some talk of integrating OpenID into the core of WP, but there’s also disagreement on this. With BuddyPress putting it on the iteration roadmap, this may change people’s minds in the long run as they realize how Identity *IS* the platform (the core) of the Internet.

    #55048
    Arx Poetica
    Participant

    Waclaw — I’ve started working on a jQuery plugin for distributed social networks (the social stack). One thing that’s needed is a process for “discovery.” There are several solutions already out there implementing various kinds of things along this line, but nothing quite like what you’re calling for.

    Go look up Chris Messina, Luke Shepard and David Recordon (Facebook), Joseph Smarr and John McCrea (both Plaxo). They’re all advocating this type of stuff.

    (You can watch them here: http://thesocialweb.tv/ ) (hasn’t been active in a little while, though, but look at the archives)

    Anyway, I think I’ve seen you in the dev chat, so maybe I’ll talk to you there too, when time permits. There’s much to say on this, and I’m hoping to do some good legwork on getting things ready. While I don’t have *only* BuddyPress in mind as the platform, it is the most interesting platform (and viable) at the moment.

    #55045
    profitsbuzz
    Participant

    I do not mind using the buddypress theme, however I do not like the forum config with bbpress can I work my way around it.

    #55044
    Xevo
    Participant

    Nice, I can really use this. Since I’m probably going to use zips/rars/torrent files a lot in the forums.

    Thanks!

    #55041
    designodyssey
    Participant

    I won’t be using all the components, but I expect my design to be complex like Gigaom and Tastykitchen. I actually found BP looking for a suitable extended profile plugin to no avail. Alkivia is close, but some features have been “under development” for quite awhile in WordPress time.

    I will have a single blog setup so no extra blogs and I’m trying to keep the use of “wires” to a minimum as it can get out of hand quickly.

    #55036
    Xevo
    Participant

    I personally like the wpmu buddypress templates of Milo (3oneseven.com), these probably aren’t beginner class, but they still are awesome.

    http://3oneseven.com/wpmu-buddypress-themes/

    I’m using the template “Bruce” right now as a reference for my own buddypress community.

    Xevo
    Participant

    Had the same problem with an older buddypress template (deprecated template) on a new buddypress release. Gave me a 404 even when I used either of the forum installs. Then when I used the newest release of the template it worked fine. So yes, its most likely the same problem.

    Why not just take an existing template that works and edit that? As far as I know there shouldn’t be any major changes on templates anymore.

    Anonymous User 96400
    Inactive

    have a look here: https://codex.buddypress.org/developer-docs/conditional-template-tags/

    there’s some examples as well.

    so you could do something like this:

    if( bp_is_blog_page() ) {
    include( 'blog-header.php' ); // include this file on blog pages
    } elseif( bp_is_directory() ) {
    include( 'dir-header.php' ); // include that file on directory pages
    } else {
    get_header(); // otherwise use our normal header
    }

    #55023
    Jeff Sayre
    Participant

    This thread is pretty old, especially since there have been many changes to BP over the 7 months since it was first started. But, there are some good hints about what you can do.

    Please remember that the bp-custom.php file should be placed in /wp-content/plugins/ and not /mu-plugins/ as is mentioned early on in the thread. When the thread was first started, that location was correct. But not anymore.

    https://buddypress.org/forums/topic/securing-components-from-non-logged-in-users

    #55019
    Anonymous User 96400
    Inactive

    Hey Erich,

    in header.php look for this bit around line 47:

    <input type="text" name="log" id="user_login" value="<?php _e( 'Username', 'buddypress' ) ?>" onfocus="if (this.value == '<?php _e( 'Username', 'buddypress' ) ?>') {this.value = '';}" onblur="if (this.value == '') {this.value = '<?php _e( 'Username', 'buddypress' ) ?>';}" />

    Use this instead:

    <input type="text" name="log" id="user_login" value="" />

    Don’t forget to copy header.php into your child theme.

    #55018

    In reply to: MSIE CSS

    iggit
    Participant

    Well I’m really glad to hear that. I know how css works. What I do not know is why in the world Safari is such a disaster. (MSIE can be hacked to work). How in the world can Safari get the order of things out of whack? What good is software that has this kind of problem? I’m really hoping to use this software for a very large site (and I mean huge) but…. if its this much ridiculous trade off back and forth of styles what good is it? Seriously. I’ve had great luck with WP products for years and now buddypress and this just makes me shake my head.

    Xevo
    Participant

    Yeah, they (Andy) made Buddypress in a really weird never before seen way, I had too hack my whole theme to just get it back to normal. Your idea sounds great as well, about the advanced and simple blog option, if they hook it, then you could even make the advanced blog a VIP (paid) only option.

    But let’s not get ahead of ourselves, I’m not that good of a coder, so for me this is impossible, the fact that your asking for someone to make a plugin, suggests that your not a hardcore coder either. So we’ll just have to hope that someone reads this and wants to help. ;)

    Anyway, back on topic..

    “Add a global header to EVERY blog in your WPMU install (by default the global header isn’t activated on the mainblog) with adding your own HTML and CSS.”

    So, plug and play as far as I can see, you can even use PHP in it if you’d like. Not sure how well it’ll work together with Buddypress, but it should show a bar on top of every blog.

    #55007
    D’Arcy Norman
    Participant

    I’m seeing this, too. I just tried a fresh install of WPMU (2.8.4a) and tested Dashboard > Users > Add User (worked fine, email arrived intact).

    After installing and enabling BuddyPress 1.1.1, doing the same thing to Add User results in a borked email:

    Hi,
    You've been invited to join 'WPMU Test Blogs' at
    http://myserver.ca/wpmu as a subscriber.
    If you do not want to join this blog please ignore
    this email. This invitation will expire in a few days.

    Please click the folowing link to activate your user account:
    %s

    The last %s isn’t being substituted by the activation link.

    Bowe
    Participant

    Xevo that is another thing that would be great.. They way I thought about that issue is to give members 2 options upon registration:

    1: Simple blog (like you described)

    2: Advanced blog (a fully featured WordPress blog like we have currently)

    And the options for admins to disable one of the two if they rather have all users to have simple/advanced blogs :)

    And are you saying I can already implement the BP menu on al blogs with the global header plugin, without any new code being written?

    Xevo
    Participant

    Sounds interesting to me, but the only add you made is the “favorites” on the bar, other than that you can already use that plugin (global header).

    I’m personally working towards removing the blogs fully and just give each member 1 blog on their normal profile page, that way you just have everything of a member on one page, without the option of themes and making more than 1 blog. Basicly the same as any social community works (facebook for example). I’m also looking for a way for members to change the look and feel of their profile page, so that they can differentiate a little from the rest (background, colors etc.). But that’s just me rambling.. :)

Viewing 25 results - 61,501 through 61,525 (of 69,046 total)
Skip to toolbar