Search Results for 'wordpress'
-
Search Results
-
Topic: private message not response
Topic: Users can’t register
I created a fresh install of WordPress, removed all themes except TwentyTwenty and all default plugins. Installed Buddypress from the WP repository. Activated. This is a fresh install set up to troubleshoot this Buddypress problem in another install.
I can add users in the backend. If BP is disabled, users can register using the default registration.
No WP errors are created or logged. A single proxy error is thrown. Noted below with real domain masked.
Any suggestions?
********************
1. Which version of WordPress are you running?
Wordpress 5.5.32. Did you install WordPress as a directory or subdomain install?
Subdirectory3. If a directory install, is it in root or in a subdirectory?
subdirectory4. Did you upgrade from a previous version of WordPress? If so, from which version?
Fresh installation5. Was WordPress functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting.
yes6. Which version of BP are you running?
Version 6.4.07. Did you upgraded from a previous version of BP? If so, from which version?
No. Fresh install8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones?
None9. Are you using a standard WordPress theme or customized theme?
No10. Which theme do you use ?
Twenty-twenty11. Have you modified the core files in any way?
No12. Do you have any custom functions in bp-custom.php?
No13. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in?
None14. Please provide a list of any errors in your server’s log files. https://codex.wordpress.org/Debugging_in_WordPress
One error noted in proxy_error_log
2020/12/01 13:37:19 [error] 31520#0: *5156884 “/var/www/vhosts/DOMAIN.com/httpdocs/testing2/register/index.html” is not found (2: No such file or directory), client: 143.244.45.55, server: DOMAIN.com, request: “POST /testing2/register/ HTTP/2.0”, host: “DOMAIN.com”, referrer: “https://DOMAIN.com/testing2/register/”All debug options enabled in wpconfig but WP throws no errors or creates a log file.
15. Which company provides your hosting?
1and1 dedicated server16. Is your server running Windows, or if Linux; Apache, nginx or something else?
Apache & nginx17. Which BP Theme are you using?
None additional18. Have you overloaded any BuddyPress template files.
Touched none19. Any other site customisations that might have a bearing on the issue?
Fresh install20. What BP Template Pack is activated in your installation? You will see that under Dashboard > Settings > BuddyPress – Options page.
Buddypress Nouveau (but also tried with Buddypress Legacy)Hello,
I installed BP on my site and it was working well. But now, the “standard member front page” is gone. The page where you have your menu items: activity, messages, notifications, friends, groups, etc. What I mean by “standard member front page” is this:
I don’t understand how this page can disappear. Now when you login the website defaults to a “you’re now logged in as X” page. And if you navigate to the member directory and click on your profile, there is just a list of your friends and groups. No activity, no messages, no notifications tabs.
In addition to BP, I’m using the Profile Builder plugin, and Profile Builder Customization Toolbox. In the Appearance> customization > BuddyPress nouveau settings, I have selected the enable default front page for member profiles. I also have selected the display the biographical info from the member’s WordPress profile.
WP version:5.5.3
BP version: 6.4.0
Theme: Werkstatt
website: queerarmenianlibrary.comHi,
I have a WordPress user who is an administrator and set to KeyMaster, but when logged in with that user I see the forums and the topics in the WordPress dashboard, but I still don’t see the forums link. Also on the plug-ins page there is no settings, or the same settings link that would be in the main settings dashboard menu is not there as well.
And somewhat related maybe, I have created user accounts in the past that I’m pretty sure I was able to assign as a KeyMaster but lately when I create a new user the highest level it will let me choose in the drop-down on the new user profile page is moderator. Does anyone know what I missing?
Hi,
I’m using Buddypress as part of my websites and Mailster Newsletter Plugin to send newsletters. Mailster is offering a registration checkbox for the WordPress Registration form, but not for Buddypress registration. I thought, that it should appear anyway because the left part of the buddypress registration is coming from WordPress. But this is not the case.
Is there any chance to get the Mailster checkbox into the buddypress registration without coding (as I’m no programmer) or would I have to hire a programmer for that?
Thanks for your help!A while ago, all of my BuddyPress emails disappeared, so I used the BuddyPress Repair Tools to reinstall the emails. Shortly after that, I noticed that all of the pages o my site were returning 404 errors. But it was only affecting pages, the homepage and all posts displayed fine. I did a quick Google search and found that you can fix this by going to the permalink page in the WordPress admin console and clicking “save” without making any changes. Everything came back up. The next day and every day since then the 404 errors have come back. It never comes back immediately, but within 24 hours it happens. I can’t find any errors (although I’ll admit I’m not the best at reading logs). I can’t figure out where the pages are being redirected. I can’t figure out how to replicate the problem.
WordPress version 5.5.3
Buddy Press Version 6.3.0
I have confirmed with Themes Twenty Twenty and Twenty Thirteen. The issue persists in both themes besides the BuddyX Theme.ISSUE:
Junk characters in ‘Message’ appear in Text blocks as in example here …
/*
Click on the message title to preview it in the Active conversation box below./*]]>*/
OR in …
/*
Sorry, no messages were found./*]]>*/
Also in the text entry block at the top of the Member Activity page …
/*Profile photo of Raj Bhatia/*]]>*/
Change profile photo, tab buttons are displayed thus …
/*Upload/*]]>*//*Take Photo/*]]>*//*Delete/*]]>*/Hello,
i hope someone can help me because i am driving myself crazy at this point. im fairly new to wordpress and thought that i would give it a shot to try and have the themes custom post “video” show up in the activity stream as well as merge their comments. finding this link in the codex, https://codex.buddypress.org/plugindev/post-types-activities/i managed to have this in my bp-custom.php
function customize_page_tracking_args() { if ( ! bp_is_active( 'activity' ) ) { return; } add_post_type_support( 'video', 'buddypress-activity' ); bp_activity_set_post_type_tracking_args( 'video', array( 'action_id' => 'new_video', 'bp_activity_admin_filter' => __( 'Published a new video', 'custom-textdomain' ), 'bp_activity_front_filter' => __( 'Video', 'custom-textdomain' ), 'bp_activity_new_post' => __( '%1$s posted a new <a href="%2$s">video</a>', 'custom-textdomain' ), 'bp_activity_new_post_ms' => __( '%1$s posted a new <a href="%2$s">video</a>, on the site %3$s', 'custom-textdomain' ), 'contexts' => array( 'activity', 'member' ), 'comment_action_id' => 'new_video_comment', 'bp_activity_comments_admin_filter' => __( 'Commented a video', 'custom-textdomain' ), 'bp_activity_comments_front_filter' => __( 'Video Comments', 'custom-textdomain' ), 'bp_activity_new_comment' => __( '%1$s commented on the <a href="%2$s">video</a>', 'custom-textdomain' ), 'bp_activity_new_comment_ms' => __( '%1$s commented on the <a href="%2$s">video</a>, on the site %3$s', 'custom-textdomain' ), 'position' => 100, ) ); } add_action( 'bp_init', 'customize_page_tracking_args' );now only some of the activity shows up as there is no thumbnail image or a comment button. i might have misunderstood but i thought this would be all i needed. also i have alread enabled site tracking, indexing and allowed comments everywhere.
here is the themes cpt registration where var $post_type = ‘video’;:
function register() { register_post_type( $this->post_type, array( 'labels' => array( 'name' => __('Videos', 'themify'), 'singular_name' => __('Video', 'themify'), 'add_new' => __( 'Add New', 'themify' ), 'add_new_item' => __( 'Add New Video', 'themify' ), 'edit_item' => __( 'Edit Video', 'themify' ), 'new_item' => __( 'New Video', 'themify' ), 'view_item' => __( 'View Video', 'themify' ), 'search_items' => __( 'Search Videos', 'themify' ), 'not_found' => __( 'No Videos found', 'themify' ), 'not_found_in_trash' => __( 'No Videos found in Trash', 'themify' ), 'menu_name' => __( 'Videos', 'themify' ), ), 'supports' => array('title', 'editor', 'thumbnail', 'custom-fields', 'excerpt', 'comments'), 'hierarchical' => false, 'public' => true, 'exclude_from_search' => false, 'query_var' => true, 'can_export' => true, 'capability_type' => 'post', 'has_archive' => 'video-archive', 'menu_icon' => 'dashicons-format-video', "taxonomies"=>array("category"), )); register_taxonomy( $this->tax, array( $this->post_type ), array( 'labels' => array( 'name' => __( 'Video Categories', 'themify' ), 'singular_name' => __( 'Video Categories', 'themify' ), ), 'public' => true, 'show_in_nav_menus' => true, 'show_ui' => true, 'show_tagcloud' => true, 'hierarchical' => true, 'rewrite' => true, 'query_var' => true, )); register_taxonomy( $this->tag, array( $this->post_type ), array( 'labels' => array( 'name' => __( 'Video Tags', 'themify' ), 'singular_name' => __( 'Video Tags', 'themify' ), ), 'public' => true, 'show_in_nav_menus' => true, 'show_ui' => true, 'show_tagcloud' => true, 'hierarchical' => false, 'rewrite' => true, 'query_var' => true, )); if ( is_admin() ) { add_filter('manage_edit-'.$this->tax.'_columns', array( $this, 'taxonomy_header' ), 10, 2); add_filter('manage_'.$this->tax.'_custom_column', array( $this, 'taxonomy_column_id' ), 10, 3); add_filter('manage_edit-'.$this->tag.'_columns', array( $this, 'taxonomy_header' ), 10, 2); add_filter('manage_'.$this->tag.'_custom_column', array( $this, 'taxonomy_column_id' ), 10, 3); } }the site is https://balalatet.com/activity/ if you’d like to see
Please helpNot sure if this is a bug or just my experience.
In Buddypress Groups member’s pages, the arrows and page numbers pagination links return the ‘No Members were found’ message in groups with more than 20 members – meaning you can’t see the other members. I have Buddypress 6.3 and WordPress 5.5.3. Happens with no other plugins active and no matter the theme (have tested Twenty Fifteen-Twenty).
‘Order by’ options also return ‘No Members were found’ message. Search does the same.
I have tried BuddyPress repair tools. I even tried deleting ALL the other plugins (on the Staging site version). Nothing works – just seems broken.
Here is a video of it: https://vimeo.com/479876989/00919cb869
Can share a private link if necessary.
Topic: Members of group
As teacher, I am trying to use buddypress to communicate with the students and I have one group per class. This is still experimental and ‘work in progress’.
When I select a group and click on members, the page shows all the members registered on the website instead of the restricted number of this group members.
My website : http://www.rosenstiehl.net (sorry it’s French)
I use WordPress version 5.5.3–fr_FR and Buddypress Version 6.3.0Thanks for your help
Etienne RTopic: Password Saving Random Value
I am having an issue with my buddypress website located at devotedfellowship.org… Anytime someone registers, it saves a random password in the database. After they activate their account with email validation and try to login, it tells them that the password is incorrect for the username. However, once they use the password reset link and reset their password, it all works nicely.
I need this fixed, as most my users will not go through all that hassle. I have disabled all non buddypress mandatory plugins and the issue persisted. I have reenabled them for the time so my current users can use the site. I have also made sure my buddypress and my wordpress versions are both updated to current and they were.
Any help would be amazing and well received. Thanks,
Matt
I’m running WordPress 5.5.3 running Executive Pro theme. Using Genesis 3.3.3.
When a logged out user tries to access the community pages = Activity, Members, Groups, or Forum, it redirects them to the home page. I want it to direct them to the Register page so they know there is a community they can register for.
In Settings > Buddypress > Pages I have the following set:
Register > Register
Activate > ActivateWhen I click on “View” from there, it takes me to the home page (but I am logged in at that point since it’s the backend.)
Please help. The activity page is here:
I am also running BP Registration Options in order to make BUddypress areas private.
Thank you.Does anyone know how to incorporate replying to BuddyPress discussions within the activity feed? We are using the BuddyBoss platform and BuddyBoss custom theme.
We are trying to be a mainly forum/discussion-based site and we don’t use WP comments. So I want to have users be able to just click a “Reply” button in the activity feed to reply right there, versus being redirected to a new page (similar to Facebook’s reply/comments but for discussions).
We don’t modify the core files, only modify through child theme. We are also running bbPress through BuddyBoss. We have GoDaddy hosting with a LAMP managed server setup.
WordPress v5.5.3
BuddyBoss Platform v1.5.3
BuddyBoss Theme 1.6.0