Search Results for 'wordpress'
-
AuthorSearch Results
-
July 13, 2018 at 2:56 pm #275202
Venutius
ModeratorThat’s not a feature that is supported right now. The issue is that bp does not store the activation code for the user, so it can’t look up the activation code and know it’s the right one but has already been activated for that user. I think you would need to raise a feature request on Trac for that.
July 13, 2018 at 2:45 pm #275198In reply to: Username with @
Venutius
ModeratorThis plugin might help to achieve that.
July 12, 2018 at 6:19 pm #275183In reply to: Broken HTML on Activation Page?
Venutius
ModeratorI think this is related to this bug report:
https://buddypress.trac.wordpress.org/ticket/7923
A number of html outputs were escaped using esc_html() which caused the links to go wrong. Should be fixed in the next update.
July 11, 2018 at 5:10 pm #275161Henry Wright
ModeratorYou can report issues on Trac at https://buddypress.trac.wordpress.org/
The username and password you use here should work.
July 10, 2018 at 6:06 pm #275140In reply to: Users can’t register and they don’t show up
r-a-y
KeymasterYes, you edit
wp-content/themes/pro/buddypress/members/activate.phpwith the following:
https://buddypress.trac.wordpress.org/changeset/11766/trunk/src/bp-templates/bp-legacy/buddypress/members/activate.phpThis is mentioned in the sticky thread:
July 10, 2018 at 5:57 pm #275139r-a-y
KeymasterCheck out the
bp_get_thread_recipients_list()function:
https://buddypress.trac.wordpress.org/browser/tags/3.1.0/src/bp-messages/bp-messages-template.php?marks=1725-1729#L1711The
Deleted Userstring is used if the user profile link does not exist. If the user was deleted, then it makes sense that the string would return'Deleted User'.If the user still exists, your next step is to figure out why your user profile links are returning empty. Perhaps via a custom code snippet that is filtering the user profile URL?
July 9, 2018 at 1:13 pm #275121In reply to: 500 internal error on register on localhost
sagar1990
Participantgot my answer thanks for the hint btw.
Things I did below.hope it helps others.
Do it step wise.I have macbook.
1.In your project file like mine was htdocs/coco/ search the .htaccess file.It is will present but it will be hidden or it may not be there at all.
If it is not there, create one by using some different text editor and save the file with below contents.Remove all the blank lines and spaces from the file.
RewriteBase /
#uploaded files
RewriteRule ^(.*/)?files/$ index.php [L]
RewriteCond %{REQUEST_URI} !.*wp-content/plugins.*
RewriteRule ^(.*/)?files/(.*) wp-content/blogs.php?file=$2 [L]
# add a trailing slash to /wp-admin
RewriteCond %{REQUEST_URI} ^.*/wp-admin$
RewriteRule ^(.+)$ $1/ [R=301,L]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule . – [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-.*) $2 [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
RewriteRule . index.php [L]
<IfModule mod_security.c>
<Files async-upload.php>
SecFilterEngine Off
SecFilterScanPOST Off
</Files>
</IfModule>
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /coco/
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /coco/index.php [L]
</IfModule># END WordPress
2.Most important step.Make the file writable.right click on fileand click get info .click the lock icon on the extreme corner of the window .then provide all the users with write and read permission.
3.Now login as wpadmin. Go to settings, permalink and just click save changes button.No need to change anything there.This will actually update your .htaccess file automatically that you created now and will update it with your project path like localhost/ to yourprojectname/ (i.e the last line in the file coco/index.php)
Now go and hit the register button(my case register button gave me 404 error and previously 500 internal server error) .It will show the register page and thats how I solve the problem.
Also, I think if we mess up with .htaccess file contents or permissions the we get 500 internal server error.
hope it helps someone!:)
We can close the thread!
July 6, 2018 at 8:43 pm #275071In reply to: Problem: Cropping image doesnt work in profile!
r-a-y
KeymasterIt’s probably something to do with your theme’s CSS if I had to guess.
Try switching temporarily to one of the WordPress default themes to see if it works. If it does, can you list your theme? Perhaps we can hardcode some CSS rules so the cropping box is correctly-sized.
July 6, 2018 at 8:41 pm #275070In reply to: Private Message Button Not Working Right?
r-a-y
KeymasterThanks for the report and suggested fix, @vesterde.
I’ve linked to this thread in this ticket – https://buddypress.trac.wordpress.org/ticket/7908
July 6, 2018 at 9:45 am #275057In reply to: should I accept HTML links in users’ comments?
Varun Dubey
Participant@astridwordpress You can also moderate any comments.
Comment option specific setting is WordPress default
https://codex.wordpress.org/Settings_Discussion_ScreenJuly 6, 2018 at 8:49 am #275056In reply to: Manage activity stream
Varun Dubey
Participant@jerrytoet You can try https://wordpress.org/plugins/bp-activity-filter/
It will work with legacy template structure only, for nouveau new updates will release soon.July 6, 2018 at 7:32 am #275053In reply to: should I accept HTML links in users’ comments?
Varun Dubey
Participant@astridwordpress You can enable HTML link in comments from setting >> discussion
July 6, 2018 at 7:24 am #275051In reply to: import WP_members
Varun Dubey
Participant@mlasell You can https://wordpress.org/plugins/bp2wp-full-sync/ it will allow you to map xprofile field with user meta.
July 6, 2018 at 7:21 am #275050In reply to: WYSIWYG in BP Group description
Varun Dubey
ParticipantJuly 6, 2018 at 6:55 am #275045In reply to: Auto add friends
Varun Dubey
Participant@rumaan That’s criteria specific friendship, you will need to code for it
For ref you can check https://wordpress.org/plugins/bp-automatic-friends/July 6, 2018 at 6:52 am #275043In reply to: profile picture
Varun Dubey
Participant@emmanuel1234 There is an old plugin https://wordpress.org/plugins/cd-bp-avatar-bubble/ , not sure if it’s still working or not. You can try the same concept.
July 6, 2018 at 6:46 am #275041In reply to: Change Online time
Varun Dubey
Participant@shnactor1 It seems, Online Duration Query is hard coded for 5 min
https://raw.githubusercontent.com/buddypress/BuddyPress/5416edd2146df0aca06cba1007f5175dc827135f/src/bp-core/classes/class-bp-core-user.php
You can request for the filter from trac ticket https://buddypress.trac.wordpress.org/reportJuly 6, 2018 at 6:29 am #275037In reply to: ACF and BP Groups
Varun Dubey
Participant@brunomac not at default integration, you can check Group Extras plugin approach. https://wordpress.org/plugins/buddypress-groups-extras/
July 5, 2018 at 7:32 pm #275024In reply to: import WP_members
Henry Wright
ModeratorBuddyPress members are the same as WordPress users as far as the database is concerned. They are all saved in the
wp_userstable.July 4, 2018 at 3:51 pm #274975In reply to: Status Updates on Page
Venutius
Moderatordid you install https://wordpress.org/plugins/bp-profile-shortcodes-extra/ ? it should works with that installed
July 4, 2018 at 2:20 am #274968In reply to: Users can’t register and they don’t show up
T
ParticipantHey, sorry for the delay. June was a crazy month. I do need this fixed though, and would still really appreciate your help.
Although I don’t think this has anything to do with the issue at hand, I followed this (https://buddypress.trac.wordpress.org/changeset/11766/trunk/src/bp-templates/bp-legacy/buddypress/members/activate.php) just in case, and changed the activate.php file, but it didn’t help.
People cannot register to the site. If you’d like to try it, you will see that it sends you the activation link via email, but then asks for a valid activation key (?!). Nothing works.
Also, users sometimes show up as only “participants” and don’t show up under “all”. I have my general settings for New User Default Role as “subscriber” but it’s not applying it.
Thank you so much!
TJuly 3, 2018 at 11:52 am #274953In reply to: User to User Messenger plugin
michaelv3
Participantchats to be indexed in the message component of buddy press.
BP Better Messages – is a fully featured replacement for standard BuddyPress Messages. Plugin is fully backward compatible with BuddyPress Messages.
Websocket version (fast) $9.99 (licence) month, but I wonder if you only need to pay for one monthJuly 2, 2018 at 8:04 pm #274942In reply to: Filtering Activity Feed
Varun Dubey
ParticipantJuly 2, 2018 at 7:57 pm #274941In reply to: Profile Pages Getting 500 Error
Varun Dubey
Participant@chrisatnantucket You can contact their support at https://wordpress.com/help/contact
July 2, 2018 at 2:44 pm #274932In reply to: How to add data to users’s fields from buddypress
Nino
ParticipantSorry, it had nothing to do with buddypress. I just need to use
update_user_meta()from WordPress. -
AuthorSearch Results