Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 13,026 through 13,050 (of 69,016 total)
  • Author
    Search Results
  • #239009

    In reply to: Does BuddyPress works?

    luketapis
    Participant

    Sorry I didn’t want to be rude, there is so many scams online so I wasn’t sure.

    Thank you for your links. I’m studding it now.

    In required section I found this information:

    WordPress should be installed manually i.e. via FTP, cpanel, etc. and NOT via webhost scripts (fantastico, softalicious, etc.)which bring about numerous issues when BuddyPress is activated.

    I use zyma.com for hosting my website. I downloaded WP in my cpanel, but when I click on WP (in my cpanel) it redirect me to…softalicious.
    Is that mean that I cannot use BuddyPress correctly?

    #239007

    In reply to: Does BuddyPress works?

    Henry Wright
    Moderator

    Is BuddyPress really works?

    It sure does 🙂

    #239005

    In reply to: Does BuddyPress works?

    shanebp
    Moderator

    Did you read this:

    Getting Started

    #238996
    danbp
    Participant

    I was unable to reproduce this on a single install with Twenty Twelve.
    Simply copy/pasted your link into the what’s new form, and published.
    Are yu sure that group admin hasn’t tried to use a <a> tag ?

    FYI read also here:
    https://buddypress.trac.wordpress.org/ticket/6430
    https://buddypress.trac.wordpress.org/ticket/6432

    #238984
    maddogprod
    Participant

    In case anyone has this problem, here’s how I fixed it (I’m still not sure why it wouldn’t work as intended automatically):

    – I registered the sidebar in fucntions.php

    – Added a copy of page.php to the child theme directory: /wp-content/themes/wellness/buddypress/members/single using the name: index.php

    – Where the code in that page calls the Sidebar, I changed it to: <?php dynamic_sidebar( 'new_members_area' ); ?> which of course includes the registered name of the sidebar

    – For some reason it wasn’t picking up the Sidebar CSS so I enclosed it in a div:

    <div id="sidebar">
    <?php dynamic_sidebar( 'new_members_area' ); ?>
    </div>

    -VOILA!

    #238981
    mase857
    Participant

    Henry Wright gave a good explanation, that is the exact same way that I implemented user password and validation on my php classifieds website, which used to be a wordpress site. Can buddypress work easily with a PHP website that is not wordpress-based? It would be a cool feature to add.

    #238980
    shanebp
    Moderator

    You can create template overloads of the files you want to change.

    The single group templates are here:
    buddypress\bp-templates\bp-legacy\buddypress\groups\single\

    #238971
    Security
    Participant
    #238970
    Security
    Participant

    @@lisame
    Try this i hope this resolves the issue out
    limit-min-max-characters-buddypress-registration-form

    #238964
    shanebp
    Moderator

    Create a template overload of this file:
    buddypress\bp-templates\bp-legacy\buddypress\groups\single\activity.php

    In the overload, change this:
    <?php if ( is_user_logged_in() && bp_group_is_member() ) : ?>

    to this:
    <?php if ( is_user_logged_in() && bp_group_is_admin() ) : ?>

    #238959
    Ruhul Amin
    Participant
    modemlooper
    Moderator
    #238950
    caniwigirl
    Participant

    Hi @minglonaire,

    The forum part is easy because that is built into bbPress in the first place. If you read the “Getting Started with bbPress” page https://codex.bbpress.org/getting-started-with-bbpress/ you will note that there are three settings for forum visibility:

    Public – Anyone can see these forums
    Private – Only logged in registered users can see these forums
    Hidden: Only Moderators/Admins can see these forums

    I made my base forum (which is actually a category) Private, and the majority of sub-forums Public – but tied into the BuddyPress groups so you required membership to each particular group to access each of the forums. This only works if BuddyPress is hidden from logged out users.

    If you don’t want to use BuddyPress groups… just make all your forums Private.

    Note that BuddyPress defines Public, Private and Hidden slightly differently than bbPress

    I had issues with my theme not displaying Hidden Groups to the people it should… If this is an issue for you, check out another thread… https://buddypress.org/support/topic/hidden-groups-and-forums-not-showing-for-members-of-them/

    All the best! 🙂

    #238927
    Lisa
    Participant


    @henrywright

    I tried your code and it does not work for password strength, when users try to change their password on the front-end.

    I also tried to change it to signup_password, but that also does not work. It seems to only work on signup and not once members are logged in and try to change their password. This is the code I used.

    function my_validation() {
     global $bp;
    
     if ( !empty( $_POST['signup_password'] ) )
       if ( strlen( $_POST['signup_password'] ) < 9 )
        $bp->signup->errors['signup_password'] = __( 'Your password is not strong enough and needs to be at least 9 characters long', 'buddypress' );  
     }
     add_action( 'bp_signup_validate', 'my_validation');
    #238923
    mvp13585
    Participant

    Hi,

    i have similar problem.
    i have a custom post type “dwqa-question”

    i try the above code but the activity use default output.

    here my code in bp-custom :

    //dwqa-question
    
    function dwqa_question_activity_args() {
    	if ( ! bp_is_active( 'activity' ) ) {
    		return;
    	}
    
    	add_post_type_support( 'dwqa-question', 'buddypress-activity' );
    
    	bp_activity_set_post_type_tracking_args( 'dwqa-question', array(
    		'component_id'             => 'activity',
    		'action_id'                => 'new_dwqa_question',
            	'bp_activity_admin_filter' => __( 'Published a new Question', 'text-domain' ),
            	'bp_activity_front_filter' => __( 'Question', 'text-domain' ),
            	'contexts'                 => array( 'activity', 'member' ),
            	'activity_comment'         => true,
            	'bp_activity_new_post'     => __( '%1$s posted a new Question: <a href="%2$s">[Question]</a>', 'text-domain' ),
            	'bp_activity_new_post_ms'  => __( '%1$s posted a new Question: <a href="%2$s">[Question]</a>, on the site %3$s', 'text-domain' ),
            	'position'                 => 101,
        	) );
    }
    add_action( 'init', 'dwqa_question_activity_args' );
    
    function dwqa_question_include_post_type_title( $action, $activity ) {
    	if ( empty( $activity->id ) ) {
    		return $action;
    	}
    
    	if ( 'new_dwqa_question' != $activity->type ) {
    		return $action;
    	}
    
    	preg_match_all( '/<a.*?>([^>]*)<\/a>/', $action, $matches );
    
    	if ( empty( $matches[1][1] ) || '[Question]' != $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', 'dwqa_question_include_post_type_title', 10, 2 );

    do you know what’s wrong with this code?

    #238913
    Lisa
    Participant

    I tested it on my site and on a clean installation and both do not work on members/member_name/settings/ . Users do see a password strength meter, but can still change their password into something simple as 1 or A. How did you get it to work on members/member_name/settings/?

    With WordPress there are many plugins (none that work with buddypress frond-end settings page) that set a minimum strength for passwords. Such as Login Security Solution and iThemes Security. You can force users to change their password or set an amount of days when users must change their password.

    It seems like a major security problems (that has existed for a few years) that Buddypress allows simple passwords such as 1 and A on members/member_name/settings/

    #238910
    DewFL
    Participant

    @modemlooper thanks for the suggestion, I will change that from “register” to something else 🙂 I have tried changing the url on permlinks to a handful or different possibilities and still I get the 404 page, I have also tried all suggestions at: https://buddypress.org/support/topic/the-requested-url-register-was-not-found-on-this-server/ including adding a .htaccess file which was not in my WordPress root directory for some reason, I have also tried enabling mod_rewrite in Apache to no avail, I’m stocked 🙁

    #238909
    Klosurdo
    Participant

    These are the errors I receive when trying to activate buddypress

    Strict Standards: Declaration of BBP_Forums_Group_Extension::display() should be compatible with BP_Group_Extension::display($group_id = NULL) in /home1/cmpgorg/public_html/wp-content/plugins/bbpress/includes/extend/buddypress/groups.php on line 28

    Fatal error: Cannot redeclare kleo_bp_replace_placeholders() (previously declared in /home1/cmpgorg/public_html/wp-content/themes/kleo/lib/theme-functions.php:1894) in /home1/cmpgorg/public_html/wp-content/themes/kleo/lib/plugin-buddypress/config.php on line 105

    #238905
    Klosurdo
    Participant

    Ok got most of my site back however, when I activate buddypress I go to a white screen. Any suggestions

    #238904
    shavonn4prez
    Participant

    btw- that’s Buddypress Follows that I get the following IDs from.

    #238902
    DewFL
    Participant

    The registration page for instance has been created and can be reached at:

    http://www.witnessescity.com/index.php/register-4/

    You can reach it from my navigation menu, but the BuddyPress widget for some reason sets it to http://www.witnessescity.com/register-4/

    How do I correct that? also I no clue why the page is blank, am I supposed to input code of some sort in the page after it has been created?

    #238899
    danbp
    Participant

    You’re using kleo theme.
    Many related topics related to it are avaible on this forum.
    One of the latest:
    https://buddypress.org/support/topic/buddypress-activities-overlaps-on-post-click/

    And about third party premium themes, read here
    https://buddypress.org/support/topic/when-asking-for-support-2/

    #238898
    danbp
    Participant

    @dewfl

    witnessescity.com/registration/ = 404 error
    means that you have no page called registration.
    When activation and registration pages are not automatically created, you should do this manually

    See on BP settings Page tab. Check also the other components pages.

    Have you set up pretty permalinks ?

    Please read the doc

    Configure BuddyPress

    modemlooper
    Moderator

    if you have registration turned off in WordPress settings you will have registration troubles. When you got to settings > BuddyPress and on the pages tab do you have the pages assigned to components?

    #238884
    danbp
    Participant
Viewing 25 results - 13,026 through 13,050 (of 69,016 total)
Skip to toolbar