Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 9,501 through 9,525 (of 68,948 total)
  • Author
    Search Results
  • #257100
    hidalgoantonio
    Participant

    Hi!

    Found the culprit!

    Like you said, it wasn’t Buddypress at all. It was the rtMedia plugin’s js file called “rtMedia.backbone.js” that had the on click function set to “false” for some reason. I changed that to “true” in row 756, and deleted this from rows 717-723:

    //handling the "post update: button on activity page
    	jQuery( '#aw-whats-new-submit' ).removeAttr( 'disabled' );
    	jQuery( document ).on( "blur", '#whats-new', function () {
    		setTimeout( function () {
    			jQuery( '#aw-whats-new-submit' ).removeAttr( 'disabled' );
    		}, 100 );
    	} );

    Just documenting this here in case other folks find their way to this through search engines.

    Cheers!

    #257099
    Marcos Nobre
    Participant

    Hi, this started to happen to me with the latest buddypress update, I have a buddypress folder in my theme with my customizations, so I tried renaming that folder so it won’t be used, however the issue still occurs…

    the php error is the following

    [error] 10524#0: *41486276 FastCGI sent in stderr: “PHP message: PHP Warning: reset() expects parameter 1 to be array, boolean given in /var/www/website.com/wp-content/plugins/buddypress/bp-core/bp-core-template.php on line 3048” while reading response header from upstream, client: 74.130.56.345, server: website.com, request: “GET /members/meinhardt/media/604/ HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php5-fpm.sock:”, host: “www.website.com”, referrer: “http://www.website.com/activity/“

    #257095
    juanandrius
    Participant

    Hi Henry Wright,

    I solved my problem. i had to unclick this option:

    “Only registered or approved members can view BuddyPress/bbPress pages (Private Network).”

    and it was fine.

    Thanks!!

    #257086
    thilina82
    Participant

    Oops sorry…. I found the error.

    I have changed the wrong register.php

    Earlier I have changed “/public_html/wp-content/plugins/buddypress/bp-themes/bp-default/registration/register.php

    Changing the text in the following register.php solved the problem

    /public_html/wp-content/plugins/buddypress/bp-templates/bp-legacy/buddypress/members/register.php“.

    buddycore
    Participant

    I use a shared hosting environment and performance is sluggish at best and I’ve taken a lot of time to develop a theme that is barebones with regard to what WordPress and BuddyPress both give you.

    So, you may want to setup in an environment where you can be provisioned for more hardware resources or better hardware.

    Like Paul says though, there are many successful sites out there. I’d do your research and speak with the host.

    I’m not savvy in this area, only speaking from experience,

    #257073
    Earl_D
    Participant
    #257069
    hidalgoantonio
    Participant

    Hi. Thanks for your response.

    Unfortunately, the issue is still ongoing. I’ve tried simple javascript, invoking jQuery functions, etc.

    It looks like some triggers are being applied from separate scripts.

    I’ve installed BuddyPress without modifying anything from the core in two separate websites and the issue is being reproduced in both.

    I’ll continue researching; if I figure it out, I’ll post the solution here.

    Thanks again.

    #257068
    Henry Wright
    Moderator

    Try asking the theme author to add BuddyPress support. It’s easy for themes to support BuddyPress ever since the template hierarchy went live in BP 1.7.

    #257063
    QuincyRossieau
    Participant

    Hey Paul,

    Thanks for your reply. I think I got it to work using the BuddyPress Multi Network plugin from buddydev.com. It uses bp_enable_multiblog.

    #257060
    Paul Wong-Gibbs
    Keymaster

    The member filtering isn’t going to work like that by default. You’d need to write some code, though I think it’d work.

    The bigger question for you is to decide how you want the BuddyPress/social data to behave across all these sites. You either want to activate BuddyPress network-wide in WordPress, or consider enabling multiblog mode: https://codex.buddypress.org/getting-started/customizing/bp_enable_multiblog/

    #257046
    bigkahunaburger
    Participant

    Try this (the second function adds the course title):

    
    function customize_page_tracking_args() {
        if ( ! bp_is_active( 'activity' ) ) {
            return;
        }
         add_post_type_support( 'sfwd-courses', 'buddypress-activity' );
     
     
        bp_activity_set_post_type_tracking_args( 'sfwd-courses', array(
            'action_id'                         => 'new_sfwd-courses',
            'bp_activity_admin_filter'          => __( 'Published a new course', 'custom-textdomain' ),
            'bp_activity_front_filter'          => __( 'Course', 'custom-textdomain' ),
            'bp_activity_new_post'              => __( '%1$s wrote a new course, <a href="%2$s">[Course]</a>', 'custom-textdomain' ),
            'bp_activity_new_post_ms'           => __( '%1$s wrote a new course, <a href="%2$s">[Course]</a>, on the site %3$s', 'custom-textdomain' ),
            'contexts'                          => array( 'activity', 'member' ),
            'comment_action_id'                 => 'new_sfwd-courses_comment',
            'bp_activity_comments_admin_filter' => __( 'Commented on a course', 'custom-textdomain' ),
            'bp_activity_comments_front_filter' => __( 'Course Comments', 'custom-textdomain' ),
            'bp_activity_new_comment'           => __( '%1$s commented on a <a href="%2$s">Course</a>', 'custom-textdomain' ),
            'bp_activity_new_comment_ms'        => __( '%1$s commented on a <a href="%2$s">Course</a>, on the site %3$s', 'custom-textdomain' ),
            'position'                          => 100,
        ) );
    }
    add_action( 'init', 'customize_page_tracking_args', 1000 );
    
    function new_sfwd-courses_include_post_type_title( $action, $activity ) {
    	if ( empty( $activity->id ) ) {
    		return $action;
    	}
    
    	if ( 'new_sfwd-courses' != $activity->type ) {
    		return $action;
    	}
    
    	preg_match_all( '/<a.*?>([^>]*)<\/a>/', $action, $matches );
    
    	if ( empty( $matches[1][1] ) || '[Course]' != $matches[1][1] ) {
    		return $action;
    	}
    
    	$post_type_title = bp_activity_get_meta( $activity->id, 'post_title' );
    
    	if ( empty( $post_type_title ) ) {
    
    		switch_to_blog( $activity->item_id );
    
    		$post_type_title = get_post_field( 'post_title', $activity->secondary_item_id );
    
    		// We have a title save it in activity meta to avoid switching blogs too much
    		if ( ! empty( $post_type_title ) ) {
    			bp_activity_update_meta( $activity->id, 'post_title', $post_type_title );
    		}
    
    		restore_current_blog();
    	}
    
    	return str_replace( $matches[1][1], esc_html( $post_type_title ), $action );
    }
    add_filter( 'bp_activity_custom_post_type_post_action', 'new_sfwd-courses_include_post_type_title', 10, 2 );
    Rionoskae
    Participant

    It’s been awhile…I don’t really recall. I’m going to just scrap the forum software I was using that had BuddyPress integration in favor of Vanilla Forums.

    For what it’s worth I think the fix was I had to have my memberships page be name exactly that.

    IE: mydomain.com/buddypress-members (not /members )

    Something like that anyways…Good luck!

    #257032
    Henry Wright
    Moderator

    BuddyPress Follow is one of the best. No need to worry about security or performance when using that plugin; @r-a-y will have your back 🙂

    #257031
    magicvish
    Participant

    hi it is not the forum as https://buddypress.org/about/groups/
    if we restrict topic creations in forums it will stop it in forums

    we just would like topic creations in groups

    @sharmavish and @buddycore

    sharmavishal
    Participant

    you need to hire a developer for the facebook part of your requirements…rest all is doable by buddypress

    #257015
    magicvish
    Participant

    Hey no we are using buddypress groups

    View post on imgur.com

    thank you

    #257007

    In reply to: Public posts

    buddycore
    Participant

    Sounds like you’re using a theme that’s stopping this or when you publish a post you have it set to private.

    It’s more for WordPress forums given posts are a WordPress feature and not a BuddyPress one.

    Look at your theme files, index.php and look for anything that looks like it’s making those posts only accessible to logged in users. Something like is_user_logged_in().

    #256993
    r-a-y
    Keymaster

    I am the author of the BuddyPress Follow plugin. I can assure you that there is no tracking or data stealing in the code.

    r-a-y
    Keymaster

    The login page is not handled by BuddyPress.

    Please post your issue on the WordPress support forums:

    Support Forums

    It’s most likely a plugin conflict somewhere.

    #256988
    r-a-y
    Keymaster

    @vitamincee – Luckily for you, some other people were experiencing the same problem with HHVM.

    See:
    https://buddypress.org/support/topic/page-not-found-404-when-trying-to-access-a-member-profile/#post-256956

    Let me know if the patch works for you.

    #256978
    Slava Abakumov
    Moderator

    BuddyPress registration page is quite big, it has a lot of inputs.
    You can install a widget, called (BuddyPress) Log in. Here is info about it.
    If you use Jetpack, there is a module there, that gives ability to define widgets visibility. Here are other plugins: one, two & etc.
    Thus you will have ability to define, that this widget should be displayed only on Registration page in sidebar (or any widget zone that is defined in your theme).

    Or you can manually edit BuddyPress template files and include a shortcode or PHP code to display a login form in any place of your registration page. See docs for that.

    #256970

    In reply to: New templates??

    shanebp
    Moderator

    You can overload the BP templates in your theme. Read this…

    Some sections do not use ajax. Changing them to ajax will be a huge task.

    #256964
    binary10
    Participant

    @r-a-y I deactivated all the plugins, updated buddypress and then re-activated all the plugins. The error disapperared.
    Thanks

    #256963
    itnetworkexpert
    Participant

    Hello @danbp
    I have installed wp-email-smtp plugin and configured it successfully with no errors and was able to send test messages, but activation emails still would not send.

    Has this issue actually been resolved?

    Buddy press Version 2.6.1.1

    Regards,

    Fayaz

    #256962
    r-a-y
    Keymaster

    Does this error occur on every page?

    Have you deactivated all BuddyPress plugins? If so, does the error still show up? If not, deactivate all BP plugins and reactivate each one until the error shows up and note down the plugin that is causing the error.

Viewing 25 results - 9,501 through 9,525 (of 68,948 total)
Skip to toolbar