Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 49,876 through 49,900 (of 68,985 total)
  • Author
    Search Results
  • @mercime
    Participant

    @rogercoathup I just checked their forums some weeks ago or so to look over simplepress as an alternative and found this post. I have not tested this as I opted to go with global forums. Other BP related topics in their forums as well.

    #84652
    Philo Hagen
    Participant

    That is, of course, an option, but I’m moving a community over from a site that was in Movable Type and Elgg into a new WordPress / Buddypress system and users are obviously attached to having the same username they had before and that people already know them by.

    #84649
    bennadler
    Member

    Sorry, that is what I meant. I am using WordPress 3.0 with multisite activated. That is the exact code. I am running WordPress 3.0 and Buddypress 1.2.5. I have this code installed in my bp-custom.php file and it activates the avatars across the whole domain. Are you absolutely sure you have this all in the right place? Did you put wrapped around the code I provided?

    #84647
    @mercime
    Participant

    Sure, if you are not going to give free blogs/subblogs to members then just disable Blog Tracking component via Dashboard > BuddyPress > Component

    #84646
    rich! @ etiviti
    Participant

    @lincme – create a new topic in that plugin group with the error message and steps taken? (and if you had any certain types blocked prior) – i’m unable to reproduce with a type of ( created_group or nothing)

    the only thing i see at the last step in the group steps is recording the activity, prior to redirect to the group homepage.

    Jeff Sayre
    Participant

    @alanchrishughes

    I’m sorry that you are still having issues with deep integration of bbPress with WordPress. Many sites have an integrated bbPress install. In fact, @r-a-y has helped you extensively with the issue of bbPress integration into WordPress, pointing to many resources to help you accomplish that goal. If you are having trouble successfully performing a deep integration of bbPress with WordPress, then you should post on the bbPress or WP forums or ask for help on one of the blog articles to which Ray pointed you. (Have you searched for articles on bbPress and WordPress deep integration?)

    By the way, with the exception of using bbPress for group forums within BuddyPress, bbPress and BuddyPress will never integrate site wide as BuddyPress is a plugin that sits on top of WordPress. What you are really talking about is integration of WP’s user tables with bbP’s user tables, so that they share their user data. BuddyPress does not store login information. BuddyPress does not authenticate users. Those functions are performed by WordPress. This site’s forums (BP.org) used to have an integrated bbPress install with WP. The forums were simply skinned to look like they were BuddyPress themed. But, they were a separate theme controlled by bbPress.

    Let’s get this thread back on topic. I ask that you please refrain from taking this thread off topic anymore as it is impolite to the OP.

    #84635
    Pisanojm
    Participant

    I’ve completely turned this plugin off… @blackphantom said there was a new update for this coming out this week or next in another post I’ve read somewhere on BP.

    alanchrishughes
    Participant

    bbPress won’t integrate with Buddypress either.

    #84632
    lincme.co.uk
    Member

    @nuprn1; Yep, that works, and saves a little db space too. However, I discovered today that your Block Activity plugin causes Group creation to fail at the final stage, though as I said in a note to you, it could be a theme clash for all I know.

    I think it’s useful to have the details still in the db, and so do friends. Enabling the is_admin() part then allows us to see all activity. It’d be nicer wrapped in a plugin with Admin string adding, and I may recode your other if and when I have some time. During a long, dark winter night, probably. Anyway, useful code, and thanks again.

    #84631
    rich! @ etiviti
    Participant

    if a site owner does not care about certain activity items at all – block em:
    https://wordpress.org/extend/plugins/buddypress-block-activity-stream-types/

    #84630
    Mark
    Participant

    anyone?

    #84629

    In reply to: Fishbook Help

    techguy
    Participant

    You’ll have to modify the header.gif file for the logo.

    For the menu items, you’ll have to pull the header.php from the parent BP theme (buddypressbp-themesbp-defaultheader.php) and add it to the Fishbook theme folder. Then, you can modify it however you want.

    rich! @ etiviti
    Participant

    correct trac ticket (one listed above was for activity time_since)
    https://trac.buddypress.org/ticket/2504

    #84626
    lincme.co.uk
    Member

    @rogercoathup; Yep, I hacked the core previously due to lack of time to recode things, but upgraded to the latest BP today and found a number of issues (for me) were fixed. So only one small core hack now. Our site is fine with the &middots in the strings, which you can see at http://lincme.co.uk/community if you’re curious.

    On a (kind of) similar note, I think the functions.php idea works well, with filters, etc. We wanted the last logged-in time shown only to logged-in members, and this seems to have done the trick fine (one for activity streams, one for the profile page);

    function hide_activity($content) {
    if ( !is_user_logged_in() ) {
    $content=’Please log-in to view last visit time.’;
    }
    return $content;
    }
    add_filter(‘bp_member_last_active’, ‘hide_activity’, $last_activity);
    add_filter(‘bp_last_activity’, ‘hide_activity’, $last_activity);

    #84623
    Roger Coathup
    Participant

    @lincme – this thread mentions a filter for the view button in the profile area: https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/remove-permalink-view-link-from-profile-container-request/#post-57691

    I haven’t investigated it yet.

    #84621
    Roger Coathup
    Participant

    Hi @lincme.co.uk; yes, that kind of puts a nice full stop on its display.

    It doesn’t get rid of the problem of ‘dots’ being added on other elements you might want (like the delete option) though.

    I’m solving it, by putting my own simple API calls in bp_custom.php (I guess they’d work in functions.php as well) to return the items I want from the activities_template uncorrupted:

    my_activity_action(); returns just the action field without the meta stuff being forced in
    my_activity_time(); so the time of the activity (rather than time since) can be displayed
    has_delete_permissions(); used in conjunction with bp_get_activity_delete_link to just display the delete link if appropriate

    Then, modifying entry.php to call these functions instead.

    An improved set of API functions would make theming a lot easier – would be good to know where the invite thread is.

    #84619
    Stef
    Participant

    Ok.. this is what I got..
    code
    And it works..

    Only .. how can a set that link to the default button of buddypress.. Like the screenshot above?

    #84617
    lincme.co.uk
    Member

    Hi @rogercoathup; I removed the View link from the activity stream by putting the following in the theme’s functions.php file;

    add_filter(‘bp_activity_permalink’, create_function(‘$a’, “return null;”));

    To remove it from the Profile page required a core hack, which I keep separate so I can restore/overwrite if need be. (I could be wrong about that, as I’m just getting into BP’s actions, filters, etc).

    Since getting into BP a few weeks ago I’ve found a lot of things somewhat convoluted, but from reading around the forums here it seems the next version will have some restructuring, and easier theming. There’s a thread somewhere inviting people to test it.

    Mark
    Participant

    @Pisanojm @paulhastings0 I’m getting the same thing. Wp 3.0 BP 1.2.5

    rossagrant
    Participant

    php echo sprintf( __( ‘%s said %s ago:’, ‘buddypress’ ), bp_get_the_topic_post_poster_name(), bp_get_the_topic_post_time_since() )

    rossagrant
    Participant

    @nuprn1
    Thanks Rich, I presume it’s this part of the topic.php file I need to change.

    Do you have any idea of what it should look like to just post the date and time?

    #84601

    In reply to: Quote messages

    rossagrant
    Participant

    @nuprn1

    Is there a standalone ajax quote Rich or do I have to install the entire Forum Extras?

    #84600
    nit3watch
    Participant

    @boonebgorges maybe you could help me out here seeing as you wrote the plugin?
    K so Ive made the necessary changes I need to boone’s enhanced widgets but I have a prob.

    The 1st widget ( newest ) renders correct but the others ( active and popular ) don’t, think its because they are all calling the same js from /bp-groups/js/widget-groups.js
    How can I get arround this? Im working only with the groups widget, dont need to alter the members widget..

    This is how its rendering: http://tinypic.com/r/160xa1u/6

    Here’s the code for the popular one: http://pastebin.com/gi20R7E7

    #84598
    Mark
    Participant

    @phylliskhare do you know what plugin? I’m having a problem where with my site where you cant register if you dont have all lower case letters and you can’t have any spaces. Which is rough since people can’t add their last name without a space. Please let me know thanks

    #84594

    In reply to: Quote messages

    rich! @ etiviti
    Participant

    for group forums? – group forum extras plugin which has an ajax quote feature (requires a theme modification so the reply box is on each page though)

Viewing 25 results - 49,876 through 49,900 (of 68,985 total)
Skip to toolbar