Search Results for 'wordpress'
-
Search Results
-
WordPress 6.2.2
BuddyPress Version 11.2.0
Theme is Ocean WP
I have WP mail SMTP set up and working( I see test emails and get status emails from the site)
there is an invite new users email template available but when I send invite emails via
https://diceandmeeples.com/members/%5Busername}/invitations/ I see the invitation successful message but no Email arrives. I also have Email Log active however it does not register any emails.Any ideas?
Topic: Create new group not working
Hi,
I am new to Buddypress. After installing Buddypress. In setting->Buddypress-> Component I selected User group. When I click add new group it takes me to our website membership subscription page. I don’t know how it is taken and fix this.
Version:
Buddypress: 11.2.0
WordPress. 6.2.2Saving settings gives a “Sorry, you are not allowed to access this page” message.
Trying to set to Nouveau won’t save. It just keeps going back to Legacy. Totally not working anymore.Troubleshooting attempts included shutting down other plugins, turning on registration of new users and sites, deleting table data in phpMvAdmin, etc. Tried deleting the subsite and recreating it. tried switching up themes. Tried clearing the cache. All work using Superadmin accounts.
The rest of the multisite is working fine.No luck. Am I missing something that keeps it hopelessly broken, no matter how many times I try to wipe it and try again?
Backstory: On a multisite. Past experiments with Buddypress on this multisite. Problems emerged during attempts to set up a new site in the multisite using Buddypress.
Running WordPress 6.2.2. I have been trying to use BuddyPress version 11.2.0.I have been attempting to use the BuddyX theme. No custom modifications
Topic: Thoughts
Hello!
First, what’s the difference between the Ideas forum and the Requests & Feedback forum here? I’m picking this one to share my thoughts but they seem similar.
I have used BuddyPress off and on for many years. Currently, I use it in a sort of odd way. I only use the activity feed. Most everything else I disable or redirect.
I’ve wondered for a while now if BuddyPress was fading away or if it would get another round of major updates and I’m excited to see the news here that major changes are coming.
I hesitate to share my thoughts in places like this because:
1. I usually don’t participate here and so why would anyone want to hear my thoughts
2. Related to #1, usually when it comes to WordPress or BuddyPress it feels like it would be very rare for a casual user like me to have an idea that actually gets adopted.Still, I’ve decided to log in, say hello, and offer a couple of thoughts. This is why I have installed, but then uninstalled BuddyPress over the years:
1. Lack of features
2. LooksIt seems like in the latest news posts both of these will be addressed.
To be a little more specific, especially these days, the activity feed needs more than attachments, likes, and other things I’ve seen mentioned. It also needs link previews. Most easy-to-install, self-hosted software like BuddyPress and WordPress, don’t come with auto link previews by default. Even newer software like Flarum which I used for a while doesn’t have it by default. It’s a default expected behavior these days (IMHO).
Every major social site has this feature now.
I’m looking forward to seeing what the new vibes theme will look like. BuddyPress definitely needs to look great to boost interest again. Speed, security, and features are all important. But, especially for non-developers, it’s the looks that make people want to install something like BuddyPress. Because it’s the looks that attract visitors.
As an example of modern looks, (I’m not saying BuddyPress should look exactly like this because BuddyPress isn’t a forum), I would like to suggest that the devs look at https://waterhole.dev/.
It’s not easy or always fun working on open-source software like this. I know that an insane amount of time and heart goes into it. I always like to just say, thank you. To the developers.
Thank you and here’s to BuddyPress sticking around for many more years! (Again, please think about the auto-open graph with some kind of backup, link preview system.)
– BillyHi, I just wanted to let people know that German users have a complete translation now on wp.org when they install or update BuddyPress.
(Until yesterday, while the basic frontend was covered, ~1000 translations were missing)
You may also review my work on this link and submit any fixes you might have:
Lookup buddypress on translate.wordpress.org, avigate to German and select my per-Project
translations there. I am not including links for now as my other topic was flagged as spam.I am still working on some fixups, if you find anything to comment on, please do,
and submit your improvements if you can (just signup on the page)!If you need the formal German, reply here, I am subscribing this topic.
Hi,
I have a Custom Post Type ‘golfs’ created with CPT UI.
I try to get the golfs comments (activated) in the Activites feed of BuddyPress without success…I put the code i found here ( https://codex.buddypress.org/plugindev/post-types-activities/ ) in my bp-custom.php file :
function customize_page_tracking_args() { // Check if the Activity component is active before using it. if ( ! bp_is_active( 'activity' ) ) { return; } // Don't forget to add the 'buddypress-activity' support! add_post_type_support( 'golfs', 'buddypress-activity' ); /** * Also don't forget to allow comments from the WordPress Edit Page screen * see this screencap https://cldup.com/nsl4TxBV_j.png */ bp_activity_set_post_type_tracking_args( 'golfs', array( 'action_id' => 'new_blog_page', 'bp_activity_admin_filter' => __( 'Published a new page', 'custom-textdomain' ), 'bp_activity_front_filter' => __( 'Page', 'custom-textdomain' ), 'bp_activity_new_post' => __( '%1$s posted a new <a href="%2$s">page</a>', 'custom-textdomain' ), 'bp_activity_new_post_ms' => __( '%1$s posted a new <a href="%2$s">page</a>, on the site %3$s', 'custom-textdomain' ), 'contexts' => array( 'activity', 'member' ), 'comment_action_id' => 'new_blog_page_comment', 'bp_activity_comments_admin_filter' => __( 'Commented a page', 'custom-textdomain' ), 'bp_activity_comments_front_filter' => __( 'Pages Comments', 'custom-textdomain' ), 'bp_activity_new_comment' => __( '%1$s commented on the <a href="%2$s">page</a>', 'custom-textdomain' ), 'bp_activity_new_comment_ms' => __( '%1$s commented on the <a href="%2$s">page</a>, on the site %3$s', 'custom-textdomain' ), 'position' => 100, ) ); } add_action( 'bp_init', 'customize_page_tracking_args' );New golfs are displayed in the activities feed but not the new comment.
Can anybody tell me what’s wrong ?
WP 6.2.2
BuddyPress 11.2.0
PHP 7.4Thank’s in advance
GilHello,
I would like assistance with implementing a functionality for my WordPress website using BuddyPress. I have a private BuddyPress group, and I want to restrict access to only those users who have a valid member number. Each user has a member number, along with their last name, stored in a database.
I would like to create a mechanism where users requesting to join the group are required to enter their member number. Upon clicking the “Request” button, I want the system to validate the entered member number against my database, which contains two columns: member number and last name. If the user’s last name matches the database entry and the member number is correct, I want their request to be automatically accepted.
Could someone guide me in the right direction or provide an example of how I can achieve this?
Hello Everyone, I hope you all guys are doing good.
i want to make buddypress name field not required. I activated extended profile but still I don’t see any option to make the field optional.
I tried custom code for the field id ( field_1 ) but no success.
Any help?
Using WordPress and Buddypress with latest version.
Topic: Remove toolbar
I am using WordPress version: 6.2.2
I am using BuddyPress version: 11.2.0
My website is https://entertainerdrivers.com/
I installed Buddypress and set everything up via watching a WPtutorial video. After I set everything up I created a dummy account, to see how everything functioned on something other than my admin account. My issue is the toolbar at the top. Users can click on the wordpress icon, on the left side and get to my wordpress details. How do I not allow this? I have disabled all of the buddypress pages until I can sort this out.Topic: Invites not being sent
Hi,
I have a new site with a “Member” only chat. Since the chat isn’t open to the public, the invites aren’t being delivered. Invites only work when I select “anyone can register” in the general settings. This site is for people with a rare disease and don’t want their stories public. Can I have a closed chat AND have the ability for members to invite eachother to the new chat.I am using Buddypress 11.2.0
and WordPress 6.2I am not a programmer and need a simple solution.
Topic: No style in Buddypress why?
Hey,
I’m new to buddypress and would like to use it but I can’t get the default style of buddypress.
If I enable the legacy style the overview is a little bit better but I want to use the “Nouveau” style.
With this style all sites from Buddypress are broken.
The developer tools says, that all files are loaded correctly. I disabled all plugins but the problem still exists. The same style is given if I enable the default twentytwentythree theme from WordPress… 🙁PHP 8.1
WordPress 6.2.2
BuddyPress 11.2.0
Apache 2.4
Ubuntu 20.04Here an example screenshot of the group overview (all sites looks like that): https://i.postimg.cc/NFkmM99T/buddypress.png
Has anyone an idea what is the problem here? I can’t find the problem.
If you need more information please post it and I answer you quickly.
Thanks!Sorry for my bad english 😀
Dear Support,
Please assist with field verification. We would like to use same input verification for custom field as for field “name” (https://prnt.sc/da-ZJswtaXVA)
Also, field name was changed in the code (https://prnt.sc/i4cLYOFajVtt)
We have custom service that takes data from that field and creates O365 user so this must be valid wordpress login.
We would be grateful if you provide some information on how to make extra validation for unique values (compared to wordpress logins) for custom field and extra checks for valid symbols?
Thanks in advance!
Topic: Buddypress Birthdays
I use WordPress for my company’s local intranet. I have been using the Birthdays widget for a couple years… one setup for employee birthdays and one for work anniversaries. The IT Dept recently upgraded our server and now it shows the birthdays and anniversaries started on January 1 and not from the current date. Any ideas on how to fix this??
Wordpress 6.2.2
BuddyPress 11.2.0