Search Results for 'buddypress'
-
AuthorSearch Results
-
January 29, 2017 at 7:40 pm #263274
In reply to: Front end form
shanebp
ModeratorBP 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.January 29, 2017 at 6:15 pm #263272staxracing
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.January 29, 2017 at 2:36 pm #263270In reply to: Hide Registration Button
tammy1999
ParticipantThank 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.
January 29, 2017 at 1:22 am #263260In reply to: Hide Registration Button
shanebp
ModeratorIt’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.January 29, 2017 at 1:10 am #263259In reply to: Hide Registration Button
tammy1999
ParticipantThe 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.
January 28, 2017 at 7:41 pm #263253In reply to: Hide Registration Button
shanebp
ModeratorJanuary 27, 2017 at 5:25 pm #263222In reply to: Social connect & Buddypress
netixel
ParticipantHi,
I use this plugin : BuddyPress Social Connect – Author : Vibethemes
Regards
January 27, 2017 at 4:47 pm #263221In reply to: delete user profile fields
danbp
ParticipantHum, 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.
January 27, 2017 at 4:40 pm #263219In reply to: Social connect & Buddypress
danbp
ParticipantWell 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.
January 27, 2017 at 4:33 pm #263218In reply to: Private Messaging Limit with Membership plans
danbp
Participantit’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.
January 27, 2017 at 1:16 pm #263213In reply to: delete user profile fields
bsreverman
ParticipantThat’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.
January 27, 2017 at 12:10 pm #263212In reply to: delete user profile fields
danbp
ParticipantI 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…
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
January 27, 2017 at 9:32 am #263210In reply to: delete user profile fields
danbp
ParticipantYou 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:
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. 🙂
January 26, 2017 at 4:24 pm #263197In reply to: tinymce post-form missing “post update” button
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; }); })January 26, 2017 at 9:20 am #263184In reply to: Group forum pagination issue with wishlist
ecodemy
ParticipantHi @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 …
January 26, 2017 at 9:03 am #263182In reply to: Group forum pagination issue with wishlist
danbp
ParticipantI 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 ?
January 25, 2017 at 4:14 pm #263172In reply to: email notifications stopped for @ mentions, replies
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…
January 25, 2017 at 12:54 pm #263166Topic: hide members from search results
in forum How-to & Troubleshootingjohanna75
ParticipantIf 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?January 24, 2017 at 7:00 pm #263153In reply to: Hide members
beforeplastic
ParticipantI 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’);January 24, 2017 at 6:46 pm #263151Topic: Hide members
in forum How-to & Troubleshootingbeforeplastic
ParticipantHello,
How do I hide members from the member directory?
Use-case: For WordPress theme support I have created logins for plugin and theme support as well as dev. I would like to hide these “users” from the membership page in BuddyPress.Thank you for your assistance!
January 24, 2017 at 3:59 pm #263148In reply to: the number of members is wrong
danbp
ParticipantHi,
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:
January 24, 2017 at 8:42 am #263142danbp
ParticipantI 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
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.
January 24, 2017 at 8:38 am #263141In reply to: Bug after install
danbp
ParticipantDeactivate 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).
January 24, 2017 at 8:09 am #263138In reply to: Buddypress plugin issue
danbp
ParticipantHi,
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:
January 24, 2017 at 7:57 am #263137In reply to: How to show media upload button
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 -
AuthorSearch Results