Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 54,351 through 54,375 (of 68,918 total)
  • Author
    Search Results
  • #73804
    Tmort
    Participant

    Well I just tested that out, and it didn’t work. Its like theres a database entry exclusive to buddypress that says “You live at domain.com/folder”. I’m not sure where or why.

    I’d like to ask the community: Does buddypress interact well with wordpress’ feature where the core files live in a folder of your domain? Maybe that is my issue?

    Thanks for the help!

    #73803
    Boone Gorges
    Keymaster

    It’s probably best to take a multi-faceted approach.

    Instead of changing the way that content appears on the way out (by the time you call the global $activities_template, the content is already written in the db), you might consider manipulating it on the way in. Less overhead that way. For group related stuff like forum posts, open up bp-groups.php and search for uses of the function groups_record_activity. You’ll notice that the arguments for this function are almost always filtered. For instance, in the function groups_new_group_forum_post, you can modify the way that the activity action is displayed – you might do something like this in your theme’s functions.php:

    function my_format_activity_action($activity_action, $post_id, $post_text, &$topic) {
    $action = $post_text->topic_poster_name . " said:";
    return $action;
    }
    add_filter( 'groups_activity_new_forum_topic_action', 'my_format_activity_action', 1, 4 );

    That’s a lot easier than after-the-fact string manipulation, both for you as a developer and for the system that has to do the processing. Fish around in the files for other places where apply_filters appears – you can build functions like the one I lay out above for any filtered output.

    As far as moving things around and putting them in different orders, you’ll definitely want to look at the activity/entry.php template file. That’s where all the markup appears, so any changes (like ordering and appearance) should happen there and in CSS.

    And if you just want to change the wording here and there, you might also consider using language files (https://codex.buddypress.org/how-to-guides/customizing-labels-messages-and-urls/). It’s a relatively future-proof way to do customization.

    #73802
    rich! @ etiviti
    Participant

    got around to posting up what i did – but on the forum area only.

    http://etivite.com/groups/buddypress/forum/topic/quick-tip-adding-markitup-to-group-forum-textareas#post-20

    (though i’m using markitup – but i’m sure anything can be used)

    #73797
    MrMaz
    Participant

    I just tagged 0.4 final.

    Thank you very much to everyone who helped with the testing, translations, and bug reports.

    Not much has changed since the beta.

    * Changing the component slug is now officially supported

    * Do not show my group links or create link form unless user is a group member

    As soon as the repo updates you can upgrade from your dashboard. If you have a ton of links, make sure you let the page load all the way after upgrading since every link needs to be updated to populate a new field.

    Only two languages are up to date for 0.4. Those would be FR and NL. If you are interested in updating or adding a translation, you can download the .pot file here…

    https://plugins.trac.wordpress.org/export/229924/buddypress-links/tags/0.4/languages/buddypress-links.pot

    Enjoy the 0.4 branch!

    #73795
    mgpix
    Participant

    Hi,

    I just tested the modified plugin on a classical WP install 2.9.2 with a bp-default child theme. Seems to work just fine.

    Thanks !

    #73794
    pepijndevos
    Member

    What exactly is a component?

    Am I just supposed to start reading the function reference and some code and try to understand?

    Most articles I found there seem mere stubs that only make sense when you know what you’re looking at.

    When I started with WordPress I kind of rolled into it and looked some things up when I needed them etc.

    For WordPress there are 2 excellent guides to get you started developing plugins and themes.

    With BuddyPress I have absolutely no sense about what it does, how it works from the inside and where to start.

    Aren’t there any books or tutorials to get started developing in an easy way?

    #73791
    Scotm
    Participant

    I’ve been trying this plugin with wpmu 2.9.2 and 1.2.3 and it works great…until you try extending the logic to buddypress generated pages. That may be my fault, not understanding the correct formatting for the conditional tags.

    Can someone suggest the correct logic to use for, say: “siteurl/groups/mygroupname”?

    Cheers

    #73790
    circleabby
    Participant

    I had this same error and realized it was a conflict with a plugin that I had installed – the BuddyPress Template Pack. I’d been trying to use the Thematic theme, and had the plugin installed for that (however, could not get the BuddyPress menu to show up in this theme). When I switched over to BuddyMatic, it all went white until I deleted that Template Pack plugin. After that, however, the page has been littered with errors that I have not resolved. But it does resolve the empty page. :)

    #73789

    In reply to: Forum Ranking System

    5986155
    Inactive

    @ jordashtalon

    https://buddypress.org/forums/topic/extending-buddypress-rate-forum-posts-to-rate-blog-posts

    We are currently chatting with the developer about extending this plugin to work with post comments, but it should be possible to get him to add a setting to do what you want as well.

    Would you like to contribute to the debate going on at the above thread?

    #73787
    rich! @ etiviti
    Participant

    the index won’t paginate and it will only display public and/or if that certain user is a member of other private/hidden groups – at least that is what the logic is suppose to do ;-)

    #73786
    Paul Wong-Gibbs
    Keymaster

    This is probably best reported as bug on http://trac.buddypress.org — i18n issues with search results.

    #73785
    Paul Wong-Gibbs
    Keymaster

    If disabling the Activity Streams component causes problems with any aspect of BuddyPress on an “out of the box” install (using the default BuddyPress theme), please report as a bug on https://trac.buddypress.org/ using your username and password from this site. Thanks

    #73784
    guigoz
    Member

    Hi,

    Thanks for this plugin.

    It seems to work very good on my site, exept for the homepage. Maybe I missed something but the title of my homepage is “Blog”. I’ve checked WordPress options (site name, and site title, it’s not “Blog”) and I don’t find homepage option in BuddyPress SEO.

    Any idea ?

    Excuse my english.

    Cordialement,

    Guillaume Coulon.

    #73781

    In reply to: bbpress and buddypress

    danbpfr
    Participant

    you have to create a group and then, from the group admin, you can handle the forum.

    you must also ensure that you activate forum in bp general options

    #73778
    kriskl
    Participant

    Hello,

    not sure if this is a problem on our forum installation.. anyhow

    we have over 51 groups with forums, however only 21 are listed on the index page..

    and there is not paginating either..

    best would be to have them all listed on single page

    is there any setting i should look at?

    #73772
    Tore
    Participant

    “I just had a revelation tonight that it would be relatively trivial to extend this to topic merge and topic split, completing the “holy trinity” of forum manipulation.”

    WOW!

    #73766
    stwc
    Participant

    It’s a known issue that @username works but @user-name does not. Not sure if that’s the problem you’re having.

    I mentioned it here: https://buddypress.org/forums/topic/allowing-users-to-type-in-uppercase-letters-for-the-username#post-47196

    #73765
    avi-m
    Participant

    Yeah what Mode said!

    #73764
    Derek
    Participant

    Well it’s hard for me not to be a little smug about this Ning stuff. I moved 2 of my Ning networks over to BP with cut and paste technology and in the process have lost most of my members. However it forced me to concentrate more on the content side of my site and not the whiz bang features and I needed to do that. Ning was and is a joke and people who thought they were gonna be able to stay and suck off the Tet of Ning for free were sadly misguided.

    This is a great opportunity for the user base of BuddyPress to grow but to do so there HAS to be some real discussion and debate about CORE functionality. If we are to scoop up some of those disgruntled former Ning Network Creators then the base feature set should be comparable with what they could get with Ning.

    #73762
    leivajd
    Participant

    hey @peterranselmo awesome plugin, but i have a little issue; I{m running WPMu 2.9.2/ BuddyPress 1.2.3, with BP Groups Documents 0.3.2, and the widgets Recent / Popular Group Documents doesnt display any result . thanks in advance

    #73761
    José M. Villar
    Participant

    And I am waiting for Boone to write a plugin that will build my BP community, fill it with thousands of members that will click on hundreds of ads which in turn will make me billonaire.

    Sorry for the OT, but I really think Boone can do it…

    UPDATE: getting back on topic, wpmu.org will start building a Ning Migration Tool: http://wpmu.org/ning-to-buddypress-wordpress-migration-plugin/

    Will it be free or not ? Place your bets !

    #73760
    modemlooper
    Moderator

    @etiviti (rich!) can you add this to your forums extras plugin? *hey whats that a shooting star?, wish*

    #73757
    tjtate
    Participant

    i had a similar issue, this is how i fixed it.

    htaccess on root directory:

    # BEGIN WordPress

    <IfModule mod_rewrite.c>

    RewriteEngine On

    RewriteBase /

    RewriteCond %{REQUEST_FILENAME} !-f

    RewriteCond %{REQUEST_FILENAME} !-d

    RewriteRule . /index.php [L]

    </IfModule>

    # END WordPress

    permalink structure:

    /index.php/%postname%/

    then i had to make sure that apache has the mod_rewrite module enabled.

    running wordpress 2.9.2, apache 2.2.11 and php 5

    #73750
    paulhastings0
    Participant

    FYI, Buddypress Ajax Chat updated their plugin on April 11th. I think they may have fixed their issue so you might want to update the list if they have.

    #73748
    LPH2005
    Participant

    Thank you for hanging in there.

    php package is 5.2.13-1.el4.art as shown in Plesk 9.3.

    Update: I see that Plesk 9.5 is now available. I’ll update the base packages and see if this influences the buddypress installation.

Viewing 25 results - 54,351 through 54,375 (of 68,918 total)
Skip to toolbar