Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 8,476 through 8,500 (of 69,104 total)
  • Author
    Search Results
  • #263274

    In reply to: Front end form

    shanebp
    Moderator

    BP does not provide that functionality out-of-the-box. But it can be extended to do so.
    You will need to write some custom code.
    Or there may be a plugin that does something close to what you need and you can adapt it.
    Either way you’ll need to be able to write php code.
    If you can’t write code, you can post a job listing here.

    #263272
    staxracing
    Participant

    @danbp, you’re right insofar as that I want to edit an image in the wp-admin area.
    However, as I said, as soon as I disable buddypress, the problem disappears. Hence why I thought it might be an issue with buddypress.

    #263270
    tammy1999
    Participant

    Thank you for your help and its the BuddyPress login that comes with BuddyPress and I was using the widget version for the sidebar. I will use the link above.

    #263260
    shanebp
    Moderator

    It’s difficult to help you if we have to guess…

    >The BuddyPress Login widget that I am using

    Is it the one that comes with BP ? Or from some other plugin?

    Url? Screenshot?

    Right click on the register button and use your browser’s tools to find the css element for that button.
    Then hide the button using the same approach as used in the solution link above.

    #263259
    tammy1999
    Participant

    The BuddyPress Login widget that I am using has a Register and Login button. I just need for the widget to show Login and nothing else. I would like the Register button to be hidden.

    #263253
    shanebp
    Moderator
    #263222
    netixel
    Participant

    Hi,

    I use this plugin : BuddyPress Social ConnectAuthor : Vibethemes

    Regards

    #263221
    danbp
    Participant

    Hum, i have not noticed such an issue on any of my BP sites, what ever theme i use…
    Have you tested with all plugins deactivated ?

    Afaik you have to debug properly.
    Use WP and BP only, with Twenty Sixteen and wp_debug activated.

    https://codex.wordpress.org/Debugging_in_WordPress

    Read also here and give details.

    #263219
    danbp
    Participant

    Well and good, but BuddyPress doesn’t connect to facebook without a plugin. Which one do you use ?
    And your theme author is right. That said caching may also imply server latency or bandwith throttling…

    If you use a FB plugin, try to ask on their support.

    #263218
    danbp
    Participant

    @deunit,

    it’s not an issue but eventually an enhancement.
    As nothing new appeared in the plugin sphere, and if you don’t know further, follow Shane’s recommendation.

    To monetize your BP, perhaps you can consider MyCred ?

    Closing this tread now.

    #263213
    bsreverman
    Participant

    That’s the problem – when I try to delete the field from my admin dashboard>users>xprofile fields than the situation I described in the initial post is what is happening. The developers of my theme said they had encountered this as a buddypress issue before and asked me to contact you. As this happens in twenty-fourteen as well I’m assuming it is not a theme issue.

    #263212
    danbp
    Participant

    I mentionned the front-end xprofile admin because you mentionned you want to delete some fields from “base” group. As site admin, you can access any user profile from front-end and modify the fields.

    As site admin, you have also the possibility to access those fields from within the admin dashboard, where you can physically delete xprofile fields…

    User Extended Profiles

    As i don’t want to login to dropbox to see your screenshot, i ignore what you mean precisely at this time… except “delete some fields” which is, so far, enough for me.

    FYI, any xprofile field goes on the registration page. And the fields themselves are in the admin under dashboard > users > xprofile fields

    #263210
    danbp
    Participant

    You say nothing about where you try to delete your fields.

    So i assume you are using BuddyPress the standart way and are working as “site admin” in the backend.

    Read here:

    Profile → Edit

    Generally, when removing something comes back after you did it, it is because you forgot to save your changes. So far i know, there is no ghost or 4th dimension inside BuddyPress. 🙂

    #263197
    phucitol
    Participant

    @meebovn Just saw your post. Here is the code I was using. I just load it from it’s own JS file in my functions.php. IIRC most of it is copy-pasta from a buddypress file with w/e tweaking I needed to get it working. It’s not pretty though.

    
    jQuery(document).ready(function($) {
    	
    	/* necessary to get the custom post-form working */
      	//Deregister buddypress built in actions
      	$('#whats-new').off("focus");
      	$('#whats-new-form').off("focusout");
      	$('#whats-new-options').show();
      	$('#aw-whats-new-submit').off('click');
    
      	/* New posts */
    	$('#aw-whats-new-submit').on( 'click', function() {
    		var editor = tinymce.get('whats-new');
    		editor.save();
    
    		var last_date_recorded = 0,
    			button = $(this),
    			form   = button.closest('form#whats-new-form'),
    			inputs = {}, post_data;
    
    		// Get all inputs and organize them into an object {name: value}
    		$.each( form.serializeArray(), function( key, input ) {
    			// Only include public extra data
    			if ( '_' !== input.name.substr( 0, 1 ) && 'whats-new' !== input.name.substr( 0, 9 ) ) {
    				if ( ! inputs[ input.name ] ) {
    					inputs[ input.name ] = input.value;
    				} else {
    					// Checkboxes/dropdown list can have multiple selected value
    					if ( ! $.isArray( inputs[ input.name ] ) ) {
    						inputs[ input.name ] = new Array( inputs[ input.name ], input.value );
    					} else {
    						inputs[ input.name ].push( input.value );
    					}
    				}
    			}
    		} );
    
    		form.find( '*' ).each( function() {
    			if ( $.nodeName( this, 'textarea' ) || $.nodeName( this, 'input' ) ) {
    				$(this).prop( 'disabled', true );
    			}
    		} );
    
    		/* Remove any errors */
    		$('div.error').remove();
    		button.addClass('loading');
    		button.prop('disabled', true);
    		form.addClass('submitted');
    
    		/* Default POST values */
    		object = '';
    		item_id = $('#whats-new-post-in').val();
    		content = $('#whats-new').val();
    		firstrow = $( '#buddypress ul.activity-list li' ).first();
    		activity_row = firstrow;
    		timestamp = null;
    
    		// Checks if at least one activity exists
    		if ( firstrow.length ) {
    
    			if ( activity_row.hasClass( 'load-newest' ) ) {
    				activity_row = firstrow.next();
    			}
    
    			timestamp = activity_row.prop( 'class' ).match( /date-recorded-([0-9]+)/ );
    		}
    
    		if ( timestamp ) {
    			last_date_recorded = timestamp[1];
    		}
    
    		/* Set object for non-profile posts */
    		if ( item_id > 0 ) {
    			object = $('#whats-new-post-object').val();
    		}
    
    		post_data = $.extend( {
    			action: 'post_update',
    			'cookie': bp_get_cookies(),
    			'_wpnonce_post_update': $('#_wpnonce_post_update').val(),
    			'content': content,
    			'object': object,
    			'item_id': item_id,
    			'since': last_date_recorded,
    			'_bp_as_nonce': $('#_bp_as_nonce').val() || ''
    		}, inputs );
    
    		$.post( ajaxurl, post_data, function( response ) {
    			form.find( '*' ).each( function() {
    				if ( $.nodeName( this, 'textarea' ) || $.nodeName( this, 'input' ) ) {
    					$(this).prop( 'disabled', false );
    				}
    			});
    
    			/* Check for errors and append if found. */
    			if ( response[0] + response[1] === '-1' ) {
    				form.prepend( response.substr( 2, response.length ) );
    				$( '#' + form.attr('id') + ' div.error').hide().fadeIn( 200 );
    			} else {
    				if ( 0 === $('ul.activity-list').length ) {
    					$('div.error').slideUp(100).remove();
    					$('#message').slideUp(100).remove();
    					$('div.activity').append( '<ul id="activity-stream" class="activity-list item-list">' );
    				}
    
    				if ( firstrow.hasClass( 'load-newest' ) ) {
    					firstrow.remove();
    				}
    
    				$('#activity-stream').prepend(response);
    
    				if ( ! last_date_recorded ) {
    					$('#activity-stream li:first').addClass('new-update just-posted');
    				}
    
    				if ( 0 !== $('#latest-update').length ) {
    					var l   = $('#activity-stream li.new-update .activity-content .activity-inner p').html(),
    						v     = $('#activity-stream li.new-update .activity-content .activity-header p a.view').attr('href'),
    						ltext = $('#activity-stream li.new-update .activity-content .activity-inner p').text(),
    						u     = '';
    
    					if ( ltext !== '' ) {
    						u = l + ' ';
    					}
    
    					u += '<a href="' + v + '" rel="nofollow">' + BP_DTheme.view + '</a>';
    
    					$('#latest-update').slideUp(300,function(){
    						$('#latest-update').html( u );
    						$('#latest-update').slideDown(300);
    					});
    				}
    
    				$('li.new-update').hide().slideDown( 300 );
    				$('li.new-update').removeClass( 'new-update' );
    				$('#whats-new').val('');
    				form.get(0).reset();
    
    				// reset vars to get newest activities
    				newest_activities = '';
    				activity_last_recorded  = 0;
    			}
    
    			//$('#whats-new-options').slideUp();
    			$('#whats-new-form textarea').animate({
    				height:'2.2em'
    			});
    			$('#aw-whats-new-submit').removeClass('loading');
    			$( '#whats-new-content' ).removeClass( 'active' );
    		});
    
    		return false;
    	});
    })
    #263184
    ecodemy
    Participant

    Hi @danbp
    it’s a bit tricky to judge who is responsible without knowing the code at all. As the forum pagination is working with bbPress and only not in BuddyPress groups, I thought this here might be the right place to ask. Sorry for that.

    I have not contacted bbPress Support because I thought the group forum feature comes with Buddypress. Well, if I deactivate bbPress I don’t have any problems and I don’t have any group forums …

    #263182
    danbp
    Participant

    I ignore if wishlist is BP compatible. And you describe an issue between bbPress and Wishlist, a premium plugin.
    And nothing at this stage indicate that BuddyPress is implicated. Have you tested your membership plugin without bbPress active ? Do you still have trouble when on a group ?

    Outside the fact we can’t help you for such not open source product, have you contacted them and the bbPress support ?

    #263172
    finzend
    Participant

    @pixelpushermama @julia_B did you fix this, or is it still a problem?

    I just upgraded from BuddyPress 2.3.4 to 2.7.4 (WP 4.7.1) but now we seem to have a problem with the mentions. Users used to get an notification-email when they were mentioned in the comments on one of our sites. That doesnt happen anymore. But the emails from private messages or replies on activity-updates do work…

    #263166
    johanna75
    Participant

    If a member set to “show only me” his city.
    In the search results it can be find !

    Is it a buddypress bug?
    What is the issue to be privacy friendly?

    #263153

    In reply to: Hide members

    beforeplastic
    Participant

    I found this. May I made a feature enhancement request to add each of these code features to enable a check box in the users section of the admin panel? Having to manually add the ID of new users to hide isn’t practical: https://buddypress.org/support/topic/hide-admin-from-members-and-activity/:

    // Remove admin from the member directory
    function bpdev_exclude_users($qs=false,$object=false){

    $excluded_user=’1′; // Id’s to remove, separated by comma

    if($object != ‘members’ && $object != ‘friends’)// hide admin to members & friends
    return $qs;

    $args=wp_parse_args($qs);

    if(!empty($args[‘user_id’]))
    return $qs;

    if(!empty($args[‘exclude’]))
    $args[‘exclude’] = $args[‘exclude’].’,’.$excluded_user;
    else
    $args[‘exclude’] = $excluded_user;

    $qs = build_query($args);

    return $qs;

    }
    add_action(‘bp_ajax_querystring’,’bpdev_exclude_users’,20,2);

    // once admin is removed, we must recount the members !
    function bpfr_hide_get_total_filter($count){
    return $count-1;
    }
    add_filter(‘bp_get_total_member_count’,’bpfr_hide_get_total_filter’);

    #263151
    #263148
    danbp
    Participant

    Hi,

    Why ? Don’t know!

    Have you an unique page for “members” and “groups” ?
    Have you permalinks activated (and not “default”) ?
    Are you on a regular or multisite install ?
    Have you searched the forum before asking ?

    https://buddypress.org/support/search/number+of+members+is+wrong/

    For a possible solution, read for example:

    [Resolved] Wrong member count

    #263142
    danbp
    Participant

    I have looked everywhere and tried everything!

    If so, what could we do more for you ? You’re asking for help for a page question. Pages are part of WordPress and fortunately, WordPress has a codex, where “page” is a well documented department.

    https://codex.wordpress.org/Pages

    Page Templates

    Concerning BP pages, that documentation is much shorter, because BP doesn’t use page like WP and when it use a page it is internally only, and only for one of his component, not to allow users to write a page.

    #263141

    In reply to: Bug after install

    danbp
    Participant

    Deactivate all plugins before activating BP.
    Activate a Twenty theme.
    Then activate BP. If your admin remains blank again, remove BP from the server – there may be corrupted files – and upload a fresh copy by FTP.

    If still trouble, contact your host and see if you have minimum requirements to install BP (including enough php memory (at least 64 mo)

    As apparently you never have to debug your install, read here for more recommendation (to follow if possible).

    #263138
    danbp
    Participant

    Hi,
    To get a forum, you need BBPress, not BuddyPress. Each can work separately.

    For your issue, follow correctly all install steps, particulary for BP pages and permalinks:

    Configure BuddyPress

    #263137
    danbp
    Participant

    [Topic moved and closed by MOD]
    Please don’t jump into topics who aren’t related to your question and don’t double post.

    BuddyPress use WordPress tinymce editor. See WP codex:
    https://codex.wordpress.org/Function_Reference/wp_editor
    https://codex.wordpress.org/TinyMCE

Viewing 25 results - 8,476 through 8,500 (of 69,104 total)
Skip to toolbar