Search Results for 'wordpress'
-
AuthorSearch Results
-
February 26, 2018 at 8:54 pm #271046
In reply to: email verification
David Cavins
KeymasterIf you are asking about bbPress, try the bbPress forum.
If you’re asking about removing the BuddyPress email verification step for new accounts, there are several plugins that do that:
February 26, 2018 at 8:31 pm #271043In reply to: BuddyPress and Custom HTML emails
David Cavins
KeymasterThere is an issue with hotmail/outlook rejecting activation emails (See the fix here: https://buddypress.trac.wordpress.org/changeset/11862).
Otherwise, the best way to customize your emails is explained here: https://codex.buddypress.org/emails/
February 26, 2018 at 8:29 pm #271042David Cavins
KeymasterThere’s a known issue with hotmail/outlook addresses that will be addressed in the next minor update. You can see the fix here:
https://buddypress.trac.wordpress.org/changeset/11862That may be your issue. If not, please provide more information.
February 26, 2018 at 12:03 am #271034shanebp
Moderator>How to delete activities before a date
February 24, 2018 at 9:13 am #271007In reply to: Cannot update cover image
Nik
ParticipantAh I forgot to report back here but I’ve been discussing elsewhere and the issue has already been reported here –
https://buddypress.trac.wordpress.org/ticket/7674
and a there’s solution by r-a-y here
https://buddypress.trac.wordpress.org/attachment/ticket/7674/7674.01.patchApparently a fix will be available in next release.
February 24, 2018 at 2:46 am #271005In reply to: Cannot update cover image
pd9soft
ParticipantFound the bug tracker & reported here
https://buddypress.trac.wordpress.org/ticket/7702#ticketFebruary 23, 2018 at 1:08 am #270988amandafrench
ParticipantNever mind! I’ve found a fabulous solution that has gotten me out of SQL query hell. Again, if anyone else is trying to sort a Members Directory, here’s what I did:
1) Put it in a table, not a list (I had done this anyway, since I wanted a single-page directory that displayed xprofile fields horizontally) — make sure it has a <th> table header row;
2) Install the plugin Table Sorter https://wordpress.org/plugins/table-sorter/ and add the class “tablesorter” to the table.Et voilĂ ! I commented out the sort type dropdown in members/index.php starting with
<div class="item-list-tabs" id="subnav" aria-label="<?php esc_attr_e( 'Members directory secondary navigation', 'buddypress' ); ?>" role="navigation">
all the way through<?php /** * Fires inside the members directory member order options. * * @since 1.2.0 */ do_action( 'bp_members_directory_order_options' ); ?> </select> </li> </ul> </div>and I made sure that the default single page list showed all users alphabetically by default in members-loop.php
<?php if ( bp_get_current_member_type() ) : ?> <p class="current-member-type"><?php bp_current_member_type_message() ?></p> <?php endif; ?> <?php if ( bp_has_members( bp_ajax_querystring( 'members' ) . '&per_page=500' . '&exclude=1,2,3,4,6' . '&type=alphabetical') ) : ?>And then all I had to do was add that tablesorter class to the table as required by the tablesorter plugin, and I got a nice dynamic table with sortable columns, which can also be sorted by multiple criteria by holding down the Shift key on the second column. I set the initial sort order with parameters that select the column by number, as described at http://tablesorter.com/docs/example-option-sort-list.html and elsewhere.
<table id="members-list" class="tablesorter {sortlist:[[4,0], [3,0], [2,0], [1,0], [0,0]]}" aria-live="assertive" aria-relevant="all">Yay.
February 21, 2018 at 9:35 pm #270956In reply to: Moving the group header and image
David Cavins
KeymasterHi I’m not exactly sure what you mean, but if you’re looking to get the profile image associated with a group or user, you can use the avatar-fetching function that BP uses in its templates,
bp_core_fetch_avatar():
https://buddypress.trac.wordpress.org/browser/tags/2.9.3/src/bp-core/bp-core-avatars.php#L99As an example, you might use
bp_core_fetch_avatar( array( 'item_id' => $user_id, 'type' => 'thumb', 'width' => false, 'height' => false, 'html' => true, 'alt' => sprintf( __( 'Profile picture of %s', 'buddypress' ), 'user name' ) ) );February 20, 2018 at 10:10 pm #270932In reply to: Buddypress Group Extension API Not Working
ethanstein
ParticipantYes, definitely helpful. Any idea how to implement the solution within the groups index page as a bulk option as oppose to having to go into the individual group?
I tried using wordpress’s bulk admin similar to the example pertaining to load-users.php, but it isn’t working.
add_filter( 'handle_bulk_actions-toplevel_page_bp-groups', 'add_bpgroups_to_bpgroup', 10, 3 ); function add_bpgroups_to_bpgroup($redirect_to, $doaction, $group_ids) { trigger_error($doaction); trigger_error($redirect_to); if( bp_is_active('groups') ): if ( $doaction !== 'assign_parent_group' ) { return $redirect_to; } trigger_error(print_r($group_ids,TRUE)); $redirect_to = add_query_arg( 'groups_assigned' , implode(',', $group_ids) , $redirect_to ); endif; return $redirect_to; } add_filter( 'bulk_actions-toplevel_page_bp-groups', 'register_bulk_assign_parent_action' ); function register_bulk_assign_parent_action ($bulk_actions) { $bulk_actions['assign_parent_group'] = __( 'Assign Parent Group', 'assign_parent_group'); //form submission add_action( 'admin_footer', function() { ?> <script type="text/javascript" charset="utf-8"> jQuery("#doaction").click(function(e){ if(jQuery("select[name='action'] :selected").val()=="assign_parent_group") { e.preventDefault(); gid=prompt("Enter a Group ID","1"); if (gid != null) { jQuery(".wrap form").append('<input type="hidden" name="bp_gid" value="'+gid+'" />').submit(); } } }); </script> <?php }); return $bulk_actions; } add_action( 'admin_notices', 'bulk_assign_parent_action_admin_notice' ); function bulk_assign_parent_action_admin_notice() { if ( ! empty( $_REQUEST['groups_assigned'] ) && ! empty( $_REQUEST['assigned_group'] ) ) { $groups_assigned = $_REQUEST['groups_assigned'] ; $parent_id = $_REQUEST['assigned_group']; $parent_group = groups_get_group($parent_id); if ($parent_group->id == 0) { printf( '<div id="message" class="error">Unknown group ID %s</div>', $parent_id); return; } $group_ids = explode(',' , $groups_assigned); foreach ($group_ids as $group_id) { $group = groups_get_group( $group_id ); if (false === groups_edit_group_settings($group_id, $group->enable_forum, $group->status, false, $parent_id )) { printf( '<div id="message" class="error">Failed to add group %s to %s.</div>', $group->name, $parent_group->name); break; } } printf( '<div id="message" class="updated fade">Successfully ' . _n( 'assigned %s group', 'assigned %s groups', $groups_assigned, 'assign_parent_group' ) . 'to %s</div>', $groups_assigned, $group_name ); }It fires the
add_filter( ‘bulk_actions-toplevel_page_bp-groups’, ‘register_bulk_assign_parent_action’ );correctly but seems to completely ignore
add_filter( ‘handle_bulk_actions-toplevel_page_bp-groups’, ‘add_bpgroups_to_bpgroup’, 10, 3 );
Any ideas?
February 20, 2018 at 8:20 pm #270922David Cavins
KeymasterThis plugin is awfully close to what you’re trying to do. You might try modifying it to show groups in a drop down instead of the options offered:
I doubt that any plugin is going to support group creation at registration; group creation is a multi-step process, and is too much to ask a new user to do at the same time as registration.
February 19, 2018 at 8:26 pm #270895In reply to: Members Page Will Not Associate with Buddypress
baccoeur
ParticipantNo pages will register, however WP says that the settings are saved.
I also have Buddypress Version 2.9.3 and WordPress Version 4.9.4
February 19, 2018 at 6:54 pm #270878In reply to: New user not receiving activation email
David Cavins
KeymasterHi, there are a lot of reasons that email fails. There’s a current issue with non-SSL domains and Outlook.com for instance: https://buddypress.org/support/topic/buddypress-emails-not-going-out/
If you’re not receiving any emails from your WordPress site, start by testing your site setup with this plugin: https://wordpress.org/plugins/check-email/
In any case, we’ll need more detail, like what the user’s email address domain is, to help you troubleshoot.
David Cavins
KeymasterSounds like you could use a non-user-specific site wide notice for that. Something like this, maybe:
February 19, 2018 at 6:48 pm #270876David Cavins
KeymasterHi @jcrr-
Please open a ticket about this issue: https://buddypress.trac.wordpress.org/
Sounds like you’ve gathered some useful/interesting/disturbing info about the underlying issue.
Thanks!
-David
February 19, 2018 at 6:42 pm #270875In reply to: Are there any limitations in users count?
John James Jacoby
KeymasterHey Kristjan,
Congrats on the success of your community!
BuddyPress is designed and architected to scale quite elegantly, so long as the underlying hardware can also support it. It’s a bit of a non-answer, but is ultimately what it boils down to.
(For example, WordPress.org has about 13 million registered user accounts, and on any given day they are active across the various connected properties, but there are a few dozen web servers handling the constant database reads & writes, API calls for software updates, caching various parts, etc…)
Group creation (and subsequent user memberships) all eventually just bubble down to a singular and easy to use function call, so depending on your parameters, and with a small custom plugin, could be automated pretty easily. Nothing exists in BuddyPress itself to facilitate the automation part, but there’s nothing preventing it either.
Perhaps to more directly answer your question, there is no technical limitation to the number of users or groups or group members your community could have, beyond the limitations of MySQL, PHP, and modern computing itself (maximum 32 bit integer value, etc…)
February 16, 2018 at 8:04 pm #270815In reply to: Select box value pairs
Venutius
ModeratorI don’t think they work that way, I also looked at BuddyPress Xprofile Custom Fields but that did not allow for that, just a single field to enter the value. You might want to suggest it as a feature request on BuddyPress Trac:
February 16, 2018 at 6:13 am #270809In reply to: exporting data, users, and whole bp
djsteveb
ParticipantThanks for pointing this out @espellcaste!
Would it be good for me, or anyone else, to add some info to the ticket(s) (not sure if https://buddypress.trac.wordpress.org/ticket/7393 marked as dupe is kicking it back to the other one, of if the other is kicking it back to this one) –
anyway, would it be good, or be considered rude to mention that this may be required by the ggrp thing that the countries in Europe are expecting web sites to provide with possible fines for violating?
I kind of want to add some info to one of the tickets there, again not sure which one would be the appropriate one, but would like to add that since they are thinking about data in regards to groups, we may need to consider stripping info that others may have posted, whether it be in groups, or in private messages, as someone could end up with an export of info that had been set to be deleted or otherwise blocked / removed from the other user – and so it may be innaopriate to include messaging from groups or otherwise that was not added by the user him/herself.
Also I think we would need a way to include media, pictures used for avatars and used via plugins like rtmedia / mediapress in order to not just be thorough and kind, but to also be in compliance with the ggrp thing.
<- obviously I am not a lawyer and not well versed in this thing as far as all that goes.
However on another side I think exporting the data as a backup will potentially increase the suablity of buddypress exponentially as well. I am looking into helping spawn some methods for people to more easily launch a bp for their family musings and another instance for friend circles – this would be great during the term of hosting – but backups would be needed to prevent loss of presious family photos and such should a hack occur, or hosting not get paid, etc.
So backups, and a method for auto exporting I think is the missing piece at this point to really push for a much greater adoption of BP, which is really close to being a viable, and more private / controlled replacements for FB at this point.
the time is ripe for this.. hope we can make it happen before end of school year somehow.
February 16, 2018 at 3:58 am #270807In reply to: exporting data, users, and whole bp
Renato Alves
ModeratorThere is already a ticket about it: https://buddypress.trac.wordpress.org/ticket/408
February 13, 2018 at 7:10 pm #270784In reply to: Temporary Groups
David Cavins
KeymasterHi @plumis-
A group will always have an admin (the person who created it), so I’m not sure about your criteria for deletion, but deleting groups is straightforward. You’re going to need to add some cron jobs that run every fifteen minutes, then find the groups your want to delete (based on your criteria). Something like this:
// Get recently created groups: $groups = groups_get_groups(); foreach ($groups as $group) { // Delete groups with only one member. $members = groups_get_group_members( array( 'exclude_admins_mods' ) ); if ( 1 == $members['count'] ) { groups_delete_group( $group->id ); } }You’ll have to figure some things out, like how to schedule run the routine via cronjob (check out this plugin https://wordpress.org/plugins/wp-crontrol/), and also what your criteria will be.
bp-groups-functions.phphas many helpful functions in it that you could use.February 13, 2018 at 12:51 pm #270773In reply to: subscriber mail not sent
Varun Dubey
Participant@drpranshumehta Emails are more server-specific functionality; You can test using some plugins https://wordpress.org/plugins/check-email
If the server is is not able to send emails, you can try SMTP configurations to send emails.by default email is sent from wordpress@yourdomainname
You can change with email using any 3rd party plugin like https://wordpress.org/plugins/wp-mailfrom-ii/February 13, 2018 at 3:49 am #270768In reply to: Problem in the new hosting
Varun Dubey
ParticipantHi @kevin000012, seems like you had multisite enabled earlier and after migration it’s disabled. you can enable it again using the following approach.
https://codex.wordpress.org/Create_A_NetworkFebruary 12, 2018 at 6:25 pm #270759In reply to: Custom post feed
Varun Dubey
ParticipantThere are a couple of plugins like https://wordpress.org/plugins/category-specific-rss-feed-menu/ you can use them to offer category RSS for your members.
February 12, 2018 at 6:16 pm #270756In reply to: Create profile fields & groups field with a plugin
Varun Dubey
Participant@tom-corvus You can check codes at
https://plugins.svn.wordpress.org/bp-default-data/tags/1.2.0/process.php with function name bpdd_import_users_profile()
BP Default data plugin have created some fields and field group for BuddyPress.February 12, 2018 at 3:55 pm #270751In reply to: How to display the content on member page
Sebastien SERRE
ParticipantTry this https://wordpress.org/plugins/bp-display-content/ for multiple reasons, I stopped working on BP.
Hope it allways workFebruary 12, 2018 at 9:17 am #270744In reply to: How do i get all the xprofile data from only userid?
virajsonagra
ParticipantI am running following plugins in my site.
1. BuddyPress
2. BuddyPress cover
3. BuddyPress NoCaptcha Register Box
4. Buddypress Xprofile Custom Fields Type
5. BuddyPress xProfile Rich Text FieldWordpress version 4.5.1
-
AuthorSearch Results