Search Results for 'wordpress'
-
AuthorSearch Results
-
February 16, 2018 at 8:04 pm #270815
In 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
February 9, 2018 at 8:42 pm #270722In reply to: How to find the link to user front (home) tab
Varun Dubey
Participant@pmaheepala domain/members/username/ should link to the front page, which needs to be added inside BuddyPress Menus http://prntscr.com/icjcek for time being, you can use https://wordpress.org/plugins/bp-direct-menus/ it’s an outdated plugin but it will serve the purpose for now. http://prntscr.com/icjklb
February 9, 2018 at 6:58 pm #270717In reply to: Password synch on registration
Varun Dubey
Participant@grounder BuddyPress use same user table to display users, it does not have its own instance to save the password. It might be possible you are using some custom approach to create an account, and it does not set the password, and WordPress is generating an auto-generated password for it.
February 9, 2018 at 6:43 pm #270714In reply to: admin change user profile photo?
Venutius
ModeratorThere’s no plugin that allows you to do that, but if you’ve got FTP access to your WordPress directories, it’s actually quite a simple task.
Firstly you need to find out the numeric user id for the person whose profile image you wish to change. I just looked them up in the bp_xprofile_data table using phpAdmin. however if that’s over your head you can go to Dashboard>>Users>>All Users and waive your mouse over that user, you will see the user id in the link address to edit that user, it will be something like …user-edit.php?user_id=17….
Once you have the user id, go to the wp-content/uploads/avatars directory. If the user already has a profile image there will be a directory with the same number as that user id, if they don’t you can create one.
Look inside the directories for one of the other users. Inside there you will find two files – ……bpfull.jpg and …….bpthumb.jpg. Download and find the size of these files, then you can create your new profile images, name them something similar (with the same length random string at the front, starting with a number, and that should be it.
Sorry I don’t have a really simple answer.
February 9, 2018 at 5:08 pm #270710In reply to: Mail activation Budypress
Varun Dubey
Participant@sandra17 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.zckoqlzc
ParticipantYes, I know HTML hahaha 😉
but I would like to know the steps of WordPress to get the links …
February 9, 2018 at 6:47 am #270700In reply to: I’m confused about template packs
Varun Dubey
Participant@normancates that screenshot it not BuddyPress theme specific, it’s regular WordPress Profile screenshot.
Bp-nouveau will be part of BuddyPress template files after BP-3.0 updates.February 9, 2018 at 5:20 am #270699In reply to: WordPress to BuddyPress profile sync
krioteh
ParticipantNobody knows how to run a massive update of user profiles in the WordPress?
Sadness … 🙁February 8, 2018 at 5:17 pm #270681JC
ParticipantYou can find more info here:
https://buddypress.trac.wordpress.org/ticket/7390
See last message:
Outlook.com and Apple iOS Mail 10 does not support HTTP URLs for the List-Unsubscribe header (which is what we are using), so the “Unsubscribe” link will not show up in these clients.Now Outlook.com rejects those emails.
February 8, 2018 at 10:03 am #270669In reply to: I’m confused about template packs
Venutius
ModeratorI the next release or so the BuddyPress team are planning to launch a new bp theme – nouveau –
February 7, 2018 at 5:18 pm #270658In reply to: backslash apostrophe bug
David Cavins
KeymasterHi @mbv-
The data should be slashed on the way into the database. When you call the activity content using
bp_get_activity_content_body(), many filters are applied, includingstripslashes_deephere: https://buddypress.trac.wordpress.org/browser/tags/2.9.3/src/bp-activity/bp-activity-filters.php#L82If you’re displaying activity using an activity loop (like BuddyPress does in its default theme parts), then the results are as expected. If you’re accessing the data some other way, you’re going to need to apply the needed filters to it. Check out the link above to see all the filters that applied to
bp_get_activity_content_body.February 7, 2018 at 4:49 pm #270654In reply to: Translate Buddy press
David Cavins
KeymasterHi @jungdchinese-
In the short term, you can copy the .pot file out of the 2.9.2 release and replace the bad one in the 2.9.3 file. You can download the 2.9.2. .pot here: https://plugins.trac.wordpress.org/export/1817522/buddypress/tags/2.9.2/buddypress.pot
February 7, 2018 at 2:03 pm #270649JC
ParticipantStill not working, only when sending from BuddyPress to Hotmail, it DO works when sending from WordPress:
1) Contacted Microsoft support, IP not blocked and everything is correct.
2) Changed activation e-amil template: removed activation related words. I have sent emails with “test” subject and body and only are delivered to gmail, yahoo, etc NOT Hotmail accounts
3) Sent from another IP, same issue.
4) Changed “from” using the “bp_email” action.
5) Done all the steps above again from a clean WP installation with only BuddyPress activated.It must be a BuddyPress issue. There are a few topics related, something is happening when sending to Outlook.com and no one seems to support.
February 7, 2018 at 9:58 am #270641amiya36
Participantmy error log?
WordPress database error Unknown column ‘profile’ in ‘where clause’ for query SELECT a.* FROM wp_buddyboss_media_albums a WHERE a.user_id=886 AND ( a.group_id NOT IN ( SELECT id FROM wp_bp_groups WHERE status != ‘public’ )
OR a.group_id IS NULL ) AND ( a.privacy IN ( ‘public’) ) AND a.id IN (profile) ORDER BY a.date_created DESC LIMIT 0, 20 made by require(‘wp-blog-header.php’), require_once(‘wp-includes/template-loader.php’), include(‘/themes/woffice/buddypress.php’), the_content, apply_filters(‘the_content’), WP_Hook->apply_filters, bp_replace_the_content, apply_filters(‘bp_replace_the_content’), WP_Hook->apply_filters, BP_Members_Theme_Compat->single_dummy_content, bp_buffer_template_part, bp_get_template_part, bp_locate_template, load_template, require(‘/themes/woffice/buddypress/members/single/home.php’), bp_get_template_part, bp_locate_template, load_template, require(‘/themes/woffice/buddypress/members/single/plugins.php’), do_action(‘bp_template_content’), WP_Hook->do_action, WP_Hook->apply_filters, buddyboss_media_template_albums, buddyboss_media_load_template, include_once(‘/plugins/buddyboss-media/templates/members/single/buddyboss-media-album.php’), buddyboss_media_has_albums, BuddyBoss_Media_Albums->__construct, BuddyBoss_Media_Albums->fetch_albumsFebruary 7, 2018 at 8:33 am #270624otty-dev
ParticipantIt might be difficult to get the follow button on the bottom of each blog post because it seems like the follow button on the profile page is only visible for logged in members
But, the second part: making it so that when someone clicks “view all posts by author”, it goes to their buddypress members page not the author page would be really crucial because now I realized that many of the members don’t have an author page because they are not registered as a author on the wordpress backend.
February 7, 2018 at 5:08 am #270612Varun Dubey
Participant@amiya36 try with default WordPress, Twenty Seventeen theme. You can also test in preview mode without activating it.
-
AuthorSearch Results