Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 58,001 through 58,025 (of 68,950 total)
  • Author
    Search Results
  • #63843
    Andrea Rennick
    Participant

    workin’ on it…

    #63842
    Jean-Pierre Michaud
    Participant

    your best shot will be at their official website, not here…

    #63841
    symm2112
    Participant

    @pcwriter,

    I have the same plugin. What changes did you need to make and move the template? I checked my install and I don’t see what files need to be copied for it to work. What do you mean by this statement? “There’s no plugin-template in BP1.2. So simply copy-paste the one from BP1.1.3, add in the content & padder divs, add in the call for the sidebar and upload that file to your theme. It works beautifully.” Can you pm me how you set it up so I can get this running again on my site?

    Thanks for the help!

    #63840
    Avi M
    Participant

    not according to this – Version: 0.9.6.4

    # Last Updated: 2010-02-15

    https://wordpress.org/extend/themes/buddymatic

    #63839
    pcwriter
    Participant

    @Dfa327 and everyone else too,

    Just thought I’d chime in here with some comments on buddypress-ajax-chat. I purchased the premium version a while back and had Dave install it on my original BP1.1.3 site and it worked flawlessly across the whole network.

    I’ve now installed BP1.2 and only had to make a slight modification so the main chat would work. There’s no plugin-template in BP1.2. So simply copy-paste the one from BP1.1.3, add in the content & padder divs, add in the call for the sidebar and upload that file to your theme. It works beautifully.

    There’s only one feature that I haven’t managed to get working yet: invite Username. “Username” is not recognized. I take this as an opportunity to dive in and learn a bit about how this stuff works. If I can debug it myself… hooray for me!

    By the way, the shoutbox works just fine across all blogs of the network in BP1.2, although I haven’t had the opportunity to test it with multiple members ‘cuz I don’t have any yet ;-)

    #63834
    r-a-y
    Keymaster

    @ashfame:

    I recognize you from the bbPress forums, so I know you know your way around WP/bb!

    It shouldn’t take long for you to get up to speed with BP.

    4) Re: modifying menu bar – you don’t need to hack the core file.

    Read this:

    https://codex.buddypress.org/how-to-guides/modifying-the-buddypress-admin-bar/

    You can put custom code in /wp-content/plugins/bp-custom.php to override settings and variables.

    7) Blacklisting usernames in WPMU – login to the WPMU backend, navigate to “Site Admin > Options”, look for the “Banned Names” field.

    There are also some good how-to guides as well:

    https://codex.buddypress.org/how-to-guides/

    Also read up on the global $bp variable:

    https://codex.buddypress.org/developer-docs/the-bp-global/

    Hope that brings you up to speed!

    #63829
    MrMaz
    Participant

    @idotter

    Your issue is related to javascript. I am not going to be able to help you debug that unless you have it installed somewhere public that I can test it. I would need an account on the site :)

    #63828

    Shit I wrote a long reply and lost it because I copied something over it in the clipboard

    Anyways I will get my hands in BuddyPress soon. I do have the knowledge of the basics of the WordPress APIs (bbPress too) but this is my first day with BuddyPress.

    1) I will keep the Moderation suite to the last position in job queue.

    4) For main menu, I will have to edit the core file. Right?

    5) Didn’t realize. Silly me

    6) Just wanted to reserve multiple for myself like “Ashfame” other than the default “admin”

    7) I am on WPMU. How can I blacklist certain usernames?

    Thanks for the help so far!

    #63827
    idotter
    Participant
    #63825
    modemlooper
    Moderator

    thats not an error you have to fill in the title and description

    #63824
    r-a-y
    Keymaster

    @idotter

    Did you select a category for the link?

    #63822
    idotter
    Participant

    great thx … but i still have this “Please fill in all of the required fields” -Error :-(

    #63819
    edelwater
    Participant

    @Mike Pratt : Bowob only requires to 1. install the plugin after that it shows on all subdomains and the main site at the footer. It takes 5 minutes to get up and running.

    It also works fast and at the bowob site you have a configuration panel where you can set the admin, set to see the leave/join messages and so on. Users love it.

    They have a problem currently however that if a user has a blog and he is signed in that the bowob bar will not appear. It will appear for other users and users who are not signed in. They are working on that.

    So… I’m also putting in comet chat in between. This will be probably this week.

    But.. I must say that arrowchat also looks nice. I cant wait however for that one to go live.

    #63818
    modemlooper
    Moderator

    Has buddymatic been updated for BP 1.2?

    #63816
    r-a-y
    Keymaster

    Just testing this right now.

    A couple of bugs:

    -Right now, I have no links. I create a link, then head on over to the BP activity stream homepage and select “My Links”. Next, I decide I want to delete this one link, so I delete it and head back to the BP activity stream homepage. Because I deleted my only link, there is no active tab on the BP activity stream homepage and therefore, no activity is displayed. It should default back to the “All Members” tab.

    -On the Links directory page, the time for my created link is off by 8 hours. It’s correct in the activity stream though.

    -If you’re on the BP activity stream page, and you click on the “My Links” tab, if the filter isn’t set to “No Filter” or one of the other link filters, nothing will show up. This isn’t really a bug due to the way the dropdown filter is implemented in BP, but it’s not great usability-wise.

    A couple of requests:

    -On the Links directory page, is it possible to add a delete or admin button right next to the “comments” link for link owners or site admins?

    #63814
    David Lewis
    Participant

    I tweaked this for my needs. It now takes the ugly slugs and replaces hyphens with spaces and capitalizes the words. It also throws in a few titles for custom pages and my custom taxonomy.

    function bpdev_blog_title($complete_title,$title_old){
    global $bp,$current_blog,$wp_query,$post;
    if ( bp_is_blog_page() ) {//if this is blog page
    if ( is_single() ) {
    $title = __($post->post_title, 'buddypress' );
    } else if ( is_category() ) {
    $cat = ucwords( str_replace("-", " ", $wp_query->query_vars['category_name'] ) );
    $title = __( 'Topics | ' . $cat, 'buddypress' );
    } else if ( is_tag() ) {
    $tag = ucwords( str_replace("-", " ", $wp_query->query_vars['tag'] ) );
    $title = __( 'Tags | ' . $tag, 'buddypress' );
    } else if ( is_tax() ) {
    $tax = ucwords( str_replace("-", " ", $wp_query->query_vars['term'] ) );
    $title = __( 'Issues | ' . $tax, 'buddypress' );
    } else if ( is_home() ) {
    $title = __( 'Archives' );
    } else if ( is_page( 'issues' ) ) {
    $title = __( 'Issues' );
    } else if ( is_page( 'topics' ) ) {
    $title = __( 'Topics' );
    }

    if ( defined( 'BP_ENABLE_MULTIBLOG' ) ) {
    $blog_title = get_blog_option( $current_blog->blog_id, 'blogname' );
    } else {
    $blog_title = get_blog_option( BP_ROOT_BLOG, 'blogname' );
    }
    if(!empty($title)) return $blog_title . ' | ' . esc_attr( $title );
    }
    //so on blog home page, It will show Blog, reason we have excluded that page
    return $complete_title;
    }

    #63813
    MrMaz
    Participant

    This thread is now defunct. Please continue here….

    https://buddypress.org/forums/topic/buddypress-links-03-rc-is-out

    #63808
    D Cartwright
    Participant

    Cool. I’m glad it’s working okay for you :)

    #63802
    Dfa327
    Participant

    Hi,

    I haven’t touched buddypress-ajax-chat since the last release pretty much, but I’m interested to know what doesn’t work so that I can fix it. You said widgets don’t work? Can you tell me more?

    R-a-y log outputs? Do you php or javascript?

    Just send me the bugs, lol!!!! :)

    #63800

    @djpaul

    I am sorry.

    I am running WP MU 2.9.1 with BuddyPress 1.2

    I have installed it as sub-folder on a sub-domain.

    I installed the 1.2rc3 and then upgraded when 1.2 was out.

    my bbPress was installed as fresh copy from within BuddyPress.

    Didn’t notice the issue earlier so can’t say much.

    @r-a-y

    I tried overwriting the file once again but didn’t work. How come deleting the whole folder and then uploading it again will do the job instead of overwriting everything?

    #63797
    bpinspire
    Participant

    Thanks @DJPaul for the quick reply, I’m away from my office desk to check the error log for now but I thinks it look to be maybe this issue https://trac.buddypress.org/ticket/1970#comment:10

    I will investigate, by the way I saw on your profile page that you are from Sussex, I am too! I couldn’t beleive it such a small world!

    #63788
    r-a-y
    Keymaster

    1.2 RC3 had this problem. It should be fixed in 1.2 final.

    Delete the entire /wp-content/plugins/buddypress/ folder

    Redownload 1.2 final and upload the same folder.

    #63781
    gsfowler
    Participant

    Thanks for the feedback, we’re still chasing this:

    Ron – The Register.php file is there.

    All – When we change the theme to kubrick, or any WPMU theme for that matter, it works fine for sign in – but of course it shatters BuddyPress.

    Gordon

    #63779
    Paul Wong-Gibbs
    Keymaster

    Hi Liz

    Just to clarify, BuddyPress is a plugin which works on regular WP or WPMU. You can disable and enable all or any part of it at anytime; so if you decide it’s not for you, it doesn’t wreck your site.

    If you install BuddyPress 1.2 right from the plugin installer, and switch to the default theme, you’ll have a full-featured BuddyPress up-and-running on your existing site. Then you can play around and work on integrating the new BuddyPress pages into your theme (there are growing numbers of threads and documentation on how to do this).

    I’d suggest testing and developing BuddyPress on a test version of your site, not the live one ;) Also as a FYI, you can test BuddyPress at http://testbp.org/.

    #63777
    Paul Wong-Gibbs
    Keymaster
Viewing 25 results - 58,001 through 58,025 (of 68,950 total)
Skip to toolbar