Search Results for 'theme'
-
Search Results
-
At the moment, I’m wanting the pages showing the list of events and the list of groups and the pages for each of those items to be accessible and viewable by people who haven’t signed up to the website. However, at the moment anytime I try to access those pages I get sent back to my registration homepage.
I’m using the SocialV theme.
Hi BuddyPress Support,
I’m experiencing an issue on my BuddyPress site where users are unable to join any groups. When they attempt to click the “Join Group” button either on the groups directory page or within the individual group page, nothing happens. There is no error message or feedback, and the user isn’t added to the group.
Here are a few details about my setup:
WordPress Version: 6.6.2
BuddyPress Version: 14.1.0
Theme Used: VikingerI’ve already tried the following troubleshooting steps without success:
Deactivated all plugins except BuddyPress to check for conflicts.
Switched to a default theme (like Twenty Twenty-Three).
Cleared cache and tested in multiple browsers.I would appreciate any help or insights on resolving this issue. Please let me know if you need further information or logs to help diagnose the problem.
Thanks in advance for your assistance!
Best regards,
I’m looking to customize user profiles in BuddyPress to better suit my site’s needs. What are the best practices for:
Adding custom fields and profile sections
Ensuring seamless integration with existing themes
Improving user interface and experience for profile pages
Any recommended plugins or techniques for advanced customization
I’d appreciate any advice or resources you can share to help with customizing BuddyPress profiles effectively.Thanks!
Hello. I needed to fix a problem on my website romancingrarehearts.com. While doing so, I deactivated and reactivated Buddypress. Then I found that most of my pages were gone. Is there a trash bin that I can get them back from? Or are they unretrievable? I’m using theme Twenty Fifteen, buddypress 14.0.0, and WordPress 6.6.1.
I’m running PHP 8.2, have deactivated all plugins other than BuddyPress, have switched to a default WordPress theme (2023), and have tried BuddyPress 12.2 and 14.0 – and BuddyPress will not send out emails to new members at all.
This includes when they self-register, when admin sends them reminder emails manually, and when registration moderation is used and admin sends them an approval email.
The BuddyPress plug-in itself says that emails are successfully sent, but they do not arrive and (when active) the WP Mail Catcher plugin does not record them as having been sent successfully or having failed: it does not acknowledge them at all.
All other emails from my site work fine when other plugins are active – including 2FA, forgotten passwords and Newsletters. Can anyone suggest what the issue might be, or what next steps I should take to troubleshoot BuddyPress? Thanks.
Hello,
I try for hours to create a function, which will display a small red dot on the nav-bars acitivity stream link, when someone posted something new. Since all users are logged in, it should be possible to work with metadata “last_activity_visit”.
Example screenshot: https://i.imgur.com/eeCvvkj.jpeg
What I tried:
Added below code to themes functions.php. Actually managed to display a red dot, when trying around with the code. But either the dot won’t be displayed at all, or it’s displayed always, even when the user visited the acitivity stream.function track_activity_page_visit() { if (bp_is_activity_component()) { update_user_meta(get_current_user_id(), 'last_activity_visit', current_time('mysql')); } } add_action('wp', 'track_activity_page_visit'); function has_new_activity_posts() { $last_visit = get_user_meta(get_current_user_id(), 'last_activity_visit', true); if (empty($last_visit)) { return false; } $args = array( 'date_query' => array( array( 'after' => $last_visit, ), ), 'max' => 1 ); $activities = bp_activity_get($args); if (!empty($activities['activities'])) { return true; } return false; } function add_red_dot_to_menu_buddypress_activity($items, $args) { if (is_user_logged_in() && has_new_activity_posts()) { foreach ($items as &$item) { if (strpos($item->url, '/activity/') !== false) { $item->title .= ' <span class="red-dot"></span>'; } } } return $items; } add_filter('wp_nav_menu_objects', 'add_red_dot_to_menu_buddypress_activity', 10, 2);
Any clue? 🙂
Topic: URL page is blank
I just installed MemberPress for the first time last week. A few years ago, I had tried using BuddyPress and set up a few things, but ultimately went a different way.
When I reinstalled BuddyPress last week, all of my old settings were still there. I’m wondering if that is the reason that this URL page is blank, because I understand that the assignment of pages has changed in the past year or so.
I have tried torubleshooting by deactivating all of my plugins besides BuddyPress and I even reverted to one of the default themes and nothing makes the data appear on the URL page.
Is there a way for me to reset my BuddyPress account so that it takes me through the full install process again? If not that, does anyone have any other ideas why this might be happening?
WP version : 6.6.2
Buddypress : Version 14.0.0
Theme : Boss
(I have checked with Twenty Twelve and it still does not work)
Our Website : https://capexpe.orgWe have been running this website under Byddypress since more than 10 years without any issues. We regularly update to new version without any major issue so far. Thanks a lot for your work.
When we upgraded to 14.0.0, the site still runs fine except when accessing a group, any group, (called “expe” on our site).
Here is an example of on Expe (group) : https://capexpe.org/expes/les-debuts-de-lalpinisme-en-autonomie/
Any idea what I could do to identify and fix what we consider a major issue for us?
Thanks in advance for your help.
Dom