Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 35,726 through 35,750 (of 68,918 total)
  • Author
    Search Results
  • #123083
    @mercime
    Participant

    Delete the line “ from header-buddypress.php

    #123081
    misterbdon
    Member

    Ok I insert the lines as you instructed me. I keep getting this error message on the “Activity” page although:

    Warning: include(/home/brbabb/public_html/wp3/wp-content/themes/Theme/TheStyle/includes/top_info.php) [function.include]: failed to open stream: No such file or directory in /home/brbabb/public_html/wp3/wp-content/themes/Theme/TheStyle/header-buddypress.php on line 77

    Warning: include() [function.include]: Failed opening ‘/home/brbabb/public_html/wp3/wp-content/themes/Theme/TheStyle/includes/top_info.php’ for inclusion (include_path=’.:/usr/lib/php:/usr/local/lib/php’) in /home/brbabb/public_html/wp3/wp-content/themes/Theme/TheStyle/header-buddypress.php on line 77

    Any idea what’s happening here?

    #123082
    @mercime
    Participant

    You’re welcome. Sorry, I should have stated it more clearly :-)

    Edit – ok, revised wording in adding code to header- and sidebar-buddypress.php

    #123079
    Tammie Lister
    Moderator

    Just to be clear did you update your theme files along with BuddyPress 1.5?

    #123097
    misterbdon
    Member

    @mercime, ok that’s what I thought you meant, I’m going to try it again now. TY!

    #123096
    @mercime
    Participant

    When I say BOTTOM for header-buddypress.php and sidebar-buddypress.php, I mean post given codes after all other pre-existing content in respective files. When I say TOP for sidebar-buddypress.php, I mean post given code above all other pre-existing content, the first line of the file.

    Your theme’s original header.php and sidebar.php files should not be changed at all.

    #123094
    Boone Gorges
    Keymaster

    If you don’t have a page associated with the Activity component, I don’t think activity permalinks will work (though that needs checking).

    At the moment, there is no simple way to remove the message. (Though you could remove it from the $bp global at admin_init if it bothered you that much.) It’s a good idea for an enhancement ticket, though http://trac.buddypress.org

    #123093
    misterbdon
    Member

    @mercime, thank you for helping me. I appreciate it. I was unsuccessful at integrating Buddypress although.
    I received a php error message regarding in the header.php, line #75. When you say insert the code at the bottom or top, you do mean the absolute bottom, or are in saying at the bottom of the final div tag ?

    Roger Coathup
    Participant

    @mycreativeway

    jqueryui has an autocomplete widget you can work with (or have a look at the older autocomplete plugin that’s used already in BuddyPress for usernames e.g. when you send a message). http://jqueryui.com/demos/autocomplete/

    The correct way to set up it up in a WP environment is by getting the autocomplete plugin to make an AJAX request to admin-ajaxurl, which will call on to an action that you create to return suggested names.

    It’s not straightforward, but a Google around will retrieve details on how to best setup an Ajax call in WP – alternatively the book “Professional WordPress Plugin Development” has a good chapter on it.

    robrat
    Member

    Did anyone figure out a way to do this without that plugin (which still doesn’t work it seems) ?

    #123103
    valuser
    Participant

    BP Xtra Signup is in the PASS list on https://codex.buddypress.org/releases/1-5-plugin-compatibility/.

    Works perfectly in single site setup.

    BUT

    On a multisite set-up with buddypress root blog on a subdirectory BP Xtra Signup’s settings page does not show up and so it can’t be used.

    Thanks for your great work. Would like to have this confirmed/contradicted if possible.

    #123102

    In reply to: Couple Thoughts

    alanchrishughes
    Participant

    @modemlooper I completely agree with you, I’m just saying iphones can still be used as telephones because that is a proven useful means of communicating.

    Thanks @boonebgorges that seems to have fixed the reply button, but it is still producing the lines at the bottom of the activity stream. Here is a screen shot.

    #123101
    cupid4
    Participant

    @boonebgorges sorry, but when to find the errors exactly when seeting WP-DEBUG to true? I can’t find any place for them in admin page or website front.

    #123113

    In reply to: Couple Thoughts

    Boone Gorges
    Keymaster

    @alanchrishughes I can’t reproduce your exact problem (I don’t see them at the bottom of the screen) though I was able to create at least some kind of error when posting new activity replies via AJAX. Try adding the following to your bp-custom.php in addition to the other stuff:
    `function bbg_dont_remove_self_replies_on_ajax() {
    remove_filter( ‘bp_has_activities’, ‘bbg_remove_self_replies’ );
    }
    add_action( ‘wp_ajax_new_activity_comment’, ‘bbg_dont_remove_self_replies_on_ajax’, 1 );`

    As I said in the ticket, I don’t think that @alanchrishughes is making a bad suggestion. Just that it’s probably not wise to implement in BP today, without making several further modifications. In the meantime, anyone is welcome to take the code suggested so far and turn it into a proof-of-concept plugin.

    #123110

    In reply to: Couple Thoughts

    alanchrishughes
    Participant

    @modemlooper not to discredit anybody’s hard work, but what does BP currently do that is so innovative that justifies not taking advantage of the option to let people have their own little fb sites in addition to whatever ground breaking Steve Jobs options you are talking about?

    #123109
    cupid4
    Participant

    @boonebgorges Thanks for this, I have another question, as a test, I installed 3.3 beta 1 today, and tried to install buddypress ( latest SVN version) but every time I click network activate it do nothing, the plugin is never showing as activated in the list of plugins or any further install instructions showing, is current svn not compatible yet with WordPress 3.3?

    #123108

    In reply to: Couple Thoughts

    alanchrishughes
    Participant

    @boonebgorges I’m also using BP 1.5 (fresh out of the box installation) and it does work to an extend, it removes the notifications from the top, but adds them to the bottom of the activity stream like I described on the trac page, and it breaks the reply button until your refresh the page. I’ve tried both pasting your code in my functions.php file and creating a bp-custom.php plugin file. Both have the same results.

    This fix, and a comment form on friends pages, would be the only two little tweaks it would take to reproduce a fb experience, right now it is reproducing the twitter experience so it is already copying something anyways, giving both options to BP users would be great. And with what you just suggested Boone people could say “oh they’re just trying to copy digg” which I understand would be frustrating, but it honestly isn’t that big of a deal, you would be copying the system but people would be implementing it to their own little situations and needs which would be completely authentic and new. Like comparing tv stations to youtube, it is copying the idea but at the same time it is completely unique because you are bringing the tv station to the users to create more diverse content.

    #123131

    In reply to: Couple Thoughts

    Boone Gorges
    Keymaster

    The code I provided works fine on my BP 1.5 installations. What version of BP are you using?

    IMO, @alanchrishughes suggestion is only advisable if we also implement something that pushes an activity item to the top of the activity stream when it has been commented on. Otherwise new activity comments will get buried in the pile. This is not a trivial thing to do, however; I’m not sure it can be easily done with our current activity data schema. A plugin could be written for the purpose right now, but it would probably have to do some funny business with BP’s MySQL queries.

    #123130
    Boone Gorges
    Keymaster

    FYI, this filter has been added, and will be in 1.5.1. See https://buddypress.trac.wordpress.org/changeset/5237

    #123129

    In reply to: Couple Thoughts

    alanchrishughes
    Participant

    Being able to launch your own website that uses a conversations system similar to fb would be awesome though and Buddypress kind of does that if it weren’t for a few little problems like what I mentioned. Like you mentioned, it would be great if there were different ways to use the software, so intentionally preventing one usage just because you may be afraid of being labeled as copying fb doesn’t make sense. Would we be talking right now if the second person to ever launch a messageboard was afraid of copying the first ever messageboard?

    #123139
    Nick Forest
    Participant

    We need a Report/Block button and we need it fast… rapido vamos :))


    I give you 2 spamming profiles, for start :
    https://buddypress.org/community/members/afarabig/
    https://buddypress.org/community/members/mercy123/

    #123138

    Yes… getting messages from miss.afara… Is Akismet used on updates? Or do registered users bypass any filtering?

    #123137
    erbrown777
    Participant

    Yip, getting tired of all the spam!

    #123134
    Graphics Cove
    Participant

    After searching for hours on end to find the solution to this I think I’ve found something. I too had installed the latest Buddypress with the latest WordPress and couldn’t get the forums to work. There was no tab linking to the forums page using the default buddypress theme and when typing in /forums/ it would just redirect back to the homepage.

    Under Buddypress->Pages set ‘Discussion Forums’ to ‘none’ rather than the ‘Forum’ page.

    This worked for me an hopefully it works for everyone else. Please note this works for the site wide forum option, I haven’t tried the group forums.

    Also seeing as it was so easy I’m guessing it’s probably not the best way to fix things and I’ve more than likely done something wrong but until someone corrects me it’s a solution that works.

    Hope it helps :)

    #123133

    In reply to: Couple Thoughts

    modemlooper
    Moderator

    The point of BuddyPress is not to create a fb like system. We do not need fb clones. BuddyPress provides a method to create unique ways of social interaction. Sure the out of the box example is a social network but this is only one way to use the software.

Viewing 25 results - 35,726 through 35,750 (of 68,918 total)
Skip to toolbar