Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 13,276 through 13,300 (of 73,985 total)
  • Author
    Search Results
  • shughesd
    Participant

    Hello,

    I’ve researched so many forum posts, and I’m not getting anywhere in solving this problem – and it is so important to this site and the whole reason I’ve built around BuddyPress!

    I have anyone can register in general settings.

    I have the register page selected in page options in Buddypress settings.

    The page exists, is a parent page in Pages.

    I have tried disabling all plugins and switching to the 2016 template.

    I have checked the register.php file exists in the appropriate folder: public_html/wordpress/wp-content/plugins/buddypress/bp-themes/bp-default/registration

    I am using the most update wp 4.6.1

    My URL is http://pathways4learning.com Clicking on register on the top black bar, or on the link on the login page, takes me to a ‘page not found’ and 404 error page.

    PLEASE HELP! There is always a solution, please help me find it.

    Thank you in advance.

    #258629
    karmatiger
    Participant

    I usually modify the latest WP theme, as they tend to be pretty stable, but this is my first time working with buddypress and I wanted to start with something built-in buddypress compatible to have a starting point.

    Sort of like how when I went to the Ford grounds in Dearborn, there was a Toyota Prius just inside their shop being reverse engineered “studied”.

    Anyhow, for now I’ve just switched off animation for the lot. Now I’ve moved on to trying to figure out how to add field data bbeside the title (Name) in the profile, but the tutorials for that on this site all seem to be 404ing.

    It’s gonna be one of those months.

    #258626
    danbp
    Participant

    Best recommendation would be to use this premium plugin

    WooCommerce BuddyPress Integration


    and some additionnal add_on like this one:
    https://fr.wordpress.org/plugins/woocommerce-buddypress-integration-xprofile-checkout-manager/

    Note: BuddyPress doesn’t handle registering, it only shows the wp-login form with some more fields (if xprofile component is activated).

    #258625
    danbp
    Participant

    Hi,

    bbPress is a separate plugin. If you don’t want it “inside” BuddyPress, you have to install it as standalone forum. Follow these instructions.

    #258623
    idichoo
    Participant

    I have install both bbpress and buddpress but i would like it to exist in as separate plugin.

    Now bbpress has been integrated in buddypress menu bar and activity update need help to remove it.

    #258621
    jowyds
    Participant

    Good day guys, understand that buddypress user registeration require member activation to fully use the newly registered buddypress account.

    I am trying to use buddypress together with woocomerce. In this case, I require all checkout in woocommerce to be registered user in my site in order to proceed with check out. However, it seems if the user is registered during the checkout for the purchase. They no longer need to activate the account with the buddypress membership. Is there a way I can let woocommerce check out to have buddypress member activation?

    Thanks guys.

    #258620

    In reply to: Isolated Groups

    gastronimo
    Participant

    It might be a lot of admin configs, but have you considered using BP multi-network plugin to keep everyone separate (https://buddydev.com/plugins/buddypress-multi-network/)?

    #258619
    jowyds
    Participant

    hello danbp, thanks for your reply.

    I have tried the suggestion to use define('WP_DEBUG', true); in conjuction with define('WP_DEBUG_LOG', true); with a twenty theme. It works fine when buddypress is not activated. No error or logfile whatsover. Then after I tried to activate buddypress, and test again. The media library still cannot load out. I have tried to check for error log and I can’t seems to find any.

    Nevertheless I found the culprit can be my bp-custom.php in which I put it just under /wp-content/plugins/[here]

    if I remove the file and everything seems works fine again with buddypress activated.

    This is the content for my bp-custom.php

    
    <?php
    // hacks and mods will go here
    
    /**
     * Make a site Private, works with/Without BuddyPress
     * 
     * @author sbrajesh
     * @global string $pagenow
     * 
     */
     
     /*
    function buddydev_private_site() {
        
        //first exclude the wp-login.php
        //register
        //activate
        global $pagenow;
        
        //do not restrict logged in users
        if( is_user_logged_in() ) {
            return ;
        }
        //if we are here, the user is not logged in, so let us check for exclusion
        //we selectively exclude pages from the list
        
        //are we on login page?
        if( $pagenow == 'wp-login.php' ) {
            return ;
        }
        
        //let us exclude the home page
        if( is_front_page() ) {
            return ;
        }
        
        $exclude_pages = array( 'register', 'activate', 'excelportfolio' );//add the slugs here
        
        //is it one of the excluded pages, if yes, we just return and don't care
        if( is_page( $exclude_pages ) ) {
            return ;
        }
        
        $redirect_url = wp_login_url( site_url('/') );//get login url,
        
        wp_safe_redirect( $redirect_url );
        exit( 0 );
    }
    
    */
     
    //add_action( 'template_redirect', 'buddydev_private_site', 0 );
    
    ?>
    
    <style type="text/css">
    
    #wp-admin-bar-bp-login {
    	display:none; /* JOWY: hide login link for buddypress. */
    }
    
    #wp-admin-bar-bp-register {
    	display:none; /* JOWY: hide register link for buddypress. */
    }
    
    #adminloginform {
    	color: #ffffff; /* JOWY: text color on form. */
    }
    
    #wpadminbar {
    	opacity: 0.7; /* JOWY: Opacity for wpadminbar. */
    }
    
    </style>
    

    what can possible went wrong?

    #258618
    pankajrathi95
    Participant

    In buddypress site. I want to activate the users directly without any activation mail.
    I used BP disable activation plugin. It is directly taking them after the register but in the users it shows pending!!
    can you tell me how to solve this problem

    rafiamudasar
    Participant
    rafiamudasar
    Participant

    Hi
    I want to create a dropdown of listing categories from which a user can select the categories on registration. But I am not sure how that would be done as I didn’t find any relevant tutorial on pre populating dropdown in xprofile

    wordpress version: 4.6.0
    buddypress: 2.6.1.1
    and here is a link to my site
    http://dev6.inserito.me/Birthbox/

    #258611
    jowyds
    Participant

    Hello Dan,

    The error is: “error occurred in the upload, please try again”. I cannot check from media library if the file is there. However, when I go to wp-content I can see the file is already being transferred to the folder. It is very weird.

    I have seeing other people having the issue, but not just from BuddyPress.
    https://wordpress.org/support/topic/media-library-cannot-display-images/

    I have tried but no luck. It seems mine is stucked with buddypress. I have cleared all my plugins and even only just installed and activate buddypress. I am not sure why this happens.

    I haven’t try to deactivate “loginizer” and also “akismet” as they seems to come with the default wp installation. Moreover, it happens when I activate the buddypress. I am also running on default wordpress 2016 theme just to test things out.

    #258604
    danbp
    Participant

    Hi,

    if you have an issue with a plugin, you have to ask on his support.
    You don’t mention BuddyPress, do you use it ?

    #258602
    danbp
    Participant

    Hi,

    please don’t double post. Closing this topic in favor of

    Cannot Upload Image if BuddyPress plugin is activated.

    #258601
    jowyds
    Participant

    Hello guys, I am running with Ampps locally before I try to have my website upload in the actual server. I have recently find out that BuddyPress is the culprit. It only happens if BuddyPress is activated.

    Screenshot

    You can see the beside animation keeps going round and round and never really stop. How can this be solved?

    I am using latest WordPress 4.6.1 and also latest buddypress 2.6.2

    danbp
    Participant

    Hi @mohammad-sy,

    thank you for your interest to BuddyPress.

    You can suggest new features and improvement requests directly on Trac. BP devs are more there as on this forum. More to this here.

    If you’re curious about next release and current works, you can follow the developments of the site on dev’s blog.

    #258591
    karmatiger
    Participant

    I realised this affected the stream on a person’s profile as well, and removing the button removed a member’s ability to delete an update they posted.

    It bothers me having a large DELETE below the activity entry, making the activity feed longer and uglier than it needs be.

    I’d like to move it to the entry header; instead of:

    KarmaTiger posted an update
    3 hours, 5 minutes ago

    it would say

    KarmaTiger posted an update
    3 hours, 5 minutes ago (delete)

    but the entry header is a function ( bp_activity_action() )and not easy to add on to (or find). Do any of you far more experienced buddypress users know how I may do this?

    #258589
    ositive
    Participant

    I tryed to work also with this solution (provided by @shanebp too):
    https://buddypress.org/support/topic/creating-a-new-order-by-filter-in-groups-loop-with-custom-sql/
    but I do not obtain to order members by rating.. is this the right approach??

    function antares_members_filter_options() {
        echo '<option value="rating">rating</option>';
    }
    add_action( 'bp_members_directory_order_options', 'antares_members_filter_options' );
    
    function antares_ajax_querystring( $query_string, $object ) {
    
    	if ( 'members' != $object ) 
    		return $query_string;
    
    	if ( ! bp_is_members_directory() ) 
    		return $query_string;
    	
    	$query_args = wp_parse_args( $query_string, array() );
    
            $page = $query_args['page'];
    
    	if( isset( $query_args['action'] ) && $query_args['action'] == 'rating' ) {
    	
    		$query_args = array();
    		$query_args['page'] = $page;
    		$query_args['orderby'] = 'rating';		
    		$query_args['order'] = 'ASC';			
    		$query_args['include'] = antares_get_members(); 
    		$query_string = http_build_query( $query_args );
    
    	}
    
    	return $query_string;
    
    }
    add_filter( 'bp_ajax_querystring', 'antares_ajax_querystring', 32, 2 );
    
    function antares_get_members() {
        global $wpdb;
    
            $sql = "SELECT 
    					a.ID as id, a.user_login AS name, a.display_name AS displayname, AVG(star) AS rating, COUNT(star) AS reviews
    				FROM 
    					{$wpdb->prefix}users AS a
    				LEFT JOIN 
    					{$wpdb->prefix}bp_activity AS b ON a.ID = b.usercheck
    				WHERE 
    					(b.is_activated is null or b.is_activated=1)
    				GROUP BY 
    					id
    				ORDER BY 
    					rating DESC";
        
    $buff = array();
    
    $result = $wpdb->get_results( $sql , OBJECT );
    
    		foreach ($result as $row) {
    			$buff[]= $row->id ;
    		}
    		
    $query_str= implode (',', $buff);
    return $query_str;
    }
    #258588
    macroccs
    Participant

    I am fairly new to WordPress, so I can’t answer with certainty. As far as I can tell, it’s just the Buddypress emails that aren’t sending.

    Plugins Include:
    BuddyPress Follow Version 1.2.2
    BuddyPress Global Search Version 1.1.5
    BuddyPress Group TinyChat Pro Version 1.4
    BuddyPress Groups Extras Version 3.6.9
    BuddyPress Message Attachment Version 2.1.1
    BuddyPress Reorder Tabs Version 1.0.9
    BuddyPress Security Check Version 2.1.2
    Buddypress Social Version 2.0
    BuddyPress User Blog Version 1.1.1
    Chat by Flyzoo – Group Chat & Live Support Version 2.2.7
    cometchat Version 1.0.0
    Disable Comments Version 1.5.2
    Embedly Version 4.0.12
    Events Manager Version 5.6.6.1
    Inline Google Spreadsheet Viewer Version 0.10.2
    Insert Adsense Version 2.0
    Invite Anyone Version 1.3.11
    Send From Version 2.2
    VideoWhisper Video Presentation Version 4.1.3
    WangGuard Version 1.7.2
    WordPress Reset Version 1.4
    WP Project Manager – Sub Task Version 0.1
    WP Project Manager PRO Version 1.5
    WP Project Manager pro – BuddyPress Integration Version 1.2
    WP Super Cache Version 1.4.8

    grebehead
    Participant

    Hi,

    I’ve installed Buddypress and created extended fields. I’ve found that when I create a new user in the WordPress admin, it copies some of the information from the profile fields into the extended profile fields.

    For example one of my extended fields is ‘Membership type’. When I create a new user with the name ‘Bob’, I find that the ‘Membership type’ is now ‘Bob’ for that record. When I try to overwrite it I find all the fields start overwriting each other every time I click save. For example I change ‘Membership type’ to ‘Individual’ and find that the ‘first name’, ‘nickname’ and ‘display name’ are all now ‘Individual’.

    I’m using BuddyPress version 2.6.2 and WP version 4.6.1

    Can anyone shed some light on what’s going on?

    Many thanks.

    danbp
    Participant

    Hi!

    1) yes – as i already explained

    2) yes

    3) the solution is to patch the file manually. It will be available in a future bbPress update, but i ignore the date… It’s better to patch immediatly, update can be in a long time.

    Here is the patch.
    – In red you see the current code.
    – In green the new one you can use.

    Remove the line in red and replace it by the green one. Note this modification in a safe place, in case the patch won’t be applied at next bbP update. This can happen and is available for absolutly any plugin, theme and even WP when it comes to patch core files.

    You see also the line number so it’s very easy to find it inside the file.
    The concerned file is mentionned in bold, above the diff. code itself.
    FYI the complete path is wp-content/plugins/bbpress/includes/extend/buddypress/activity.php

    I suppose you know how to copy/paste ? 🙂

    danbp
    Participant

    Isn’t possible at the moment.

    My site is getting heavily brigaded by spammers
    Sorry for you, but adding moderation to status wouldn’t avoid spammers signicantly.
    Have you installed WP by following some basic security recommandation ?
    Do you use some anti spam plugins ?
    How many members do you have and to what do you estimate the amount of spammers in regard of them ?
    Have you inactive users in the list ?
    Are you on a MS or single install ?

    Maybe you could also blacklist some words from updates publication.

    #258581
    danbp
    Participant

    You’re refering to a premium add-on for witch only people who buyed the licence have access. You’ve better to ask on their support or at MyCred forum.

    Personally i use Buddypress Social on SWA and Simple Share Buttons Adder for the blogs (multisite install).

    BobSD99
    Participant

    I have an xprofile field for newsletter when a user registers, which stores the field as a serialized entry of the allowed value for that field, which is the name set in the BuddyPress back end, in this case:

    “Subscribe to free newsletter”

    This results in a serialized entry in the wp_bp_xprofile_data table (in my case, for field 307) that looks like this:

    id: 14421
    field_id: 307
    user_id: 15201
    value: a:1:{i:0;s:28:”Subscribe to Free Newsletter”;}

    However, when I use the BuddyPress function to update that data:

    // get permitted value for field 307 - required for xprofile_set_field_data() to work
    $field = xprofile_get_field( 315 );
    $UpdateField =  $field->name;
    xprofile_set_field_data( 307, $current_user->ID, $UpdateField );

    The result is the field is now set to a simple string:

    id: 14421
    field_id: 307
    user_id: 15201
    value: Subscribe to Free Newsletter

    I want to reconcile these entries, so they are the same format, but when I converted the string to a serialized field the update function fails:

    // serializing field $UpdateField
    $newfield = serialize ( $UpdateField );  // result: [s:28:"Subscribe to Free Newsletter";]
    xprofile_set_field_data( 307, $current_user->ID, $newfield );

    This command fails, which I believe is because the field must match the allowed value as set in the back-end for the extended profile. I suspect because the serialized field looks like this:

    s:28:"Subscribe to Free Newsletter";

    But maybe should look like this:

    a:1:{i:0;s:28:"Subscribe to Free Newsletter";}

    So maybe I can convert the datum to a properly serialized array with the correct argument to the serialized function, and then pass it to the xprofile_set_field_data() function and get it to update.

    But why is this behavior happening? This wouldn’t seem to be the expected behavior when I pass a string to the function. I would expect the value I set on registration would be the same format of the value set when I update the field. Am I doing something wrong and how do I reconcile these entries?

    #258558
    Meet Shah
    Participant

    Hi there, I have searched a lot and haven’t got a proper solution for this.

    My site has Blog and BuddyPress as well. On the bottom of each post I have added social icons that will share the post on fb, twitter and GP.

    I am sharing post on facebook through links like, https://www.facebook.com/sharer/sharer.php?u=http%3A//example.com.

    How can I share link of that particular post to my profile through code for BuddyPress?

    So basically I need to create a Share button that shares post from the site to my Activity.

Viewing 25 results - 13,276 through 13,300 (of 73,985 total)
Skip to toolbar