Hi,
I installed 2.6.6 on a site running WP 5.7.2. The site is https://www.vsjf.org/.
After activation, I see nothing in the Dashboard, I also see nothing under Settings nor Tools. It’s as if I never installed it.
I’ve never really seen anything like this with a plugin.
I did check the front-end, and the stylesheet for bbpress is loading in my header.
Has anyone experience this before?
Hi,
I’m testing my new website and found a problem with user registration. When a new user registers (in this case myself using a different email address), the verification email isn’t being send to the user.
I, as an admin receive the email that the user x is registered.
Wondering what could cause this issue? and is there any known fix for this?
Hi,
I have restricted access to wp-login.php using IP address filtering from htaccess file. Is there a way to have two separate login URLs (php login files) one for admins and a custom URLs for non-admins? If not, I have to remove the IP filtering from my htaccess file.
I noticed that the custom login URL I created for bbPress still uses the wp-login.php.
Hello,
how can I change forum titles?
I need to change
<li class=”bbp-forum-info”>Forum
<li class=”bbp-forum-topic-count”>Sujets
<li class=”bbp-forum-reply-count”>Messages
for
<li class=”bbp-forum-info”>Thématiques
<li class=”bbp-forum-topic-count”>Discussions
<li class=”bbp-forum-reply-count”>Réponses
Caroline
Hello,
sorry for my english, i’m french.
I have bbpress 5.1.2.
I need to disable the possibility to post a topic outside of a child forum.
How can I do that ?
thanks
Caroline
Is there a way to have a page of recent replies, rather than a widget on every wordpress page?
We have an active forum (askwoody.com) and the replies widget is causing performance issues. Is there a way to remove the widget and just have a page for folks to go to instead?
Or would this plug in behave better?
bbp last post
Hi,
So the question has everything really. But I want to show the total number of upvotes a person has received and I want to put that number near the name. I have access to the backend, so I was thinking maybe I could get the number of upvotes from the database and put that number next to the name. Any help with this would be great!
Thanks in advance!
Hey all,
Using bbPress version: 2.6.5
I have an odd issue where the audio drops out within the block after I upload.
It works initially, then often about 5-10 minutes after upload the audio shows up as 0.00 seconds on site.
To fix it, I have to keep the WordPress page open and update the story.
From there it locks in and doesn’t drop out.
It’s very frustrating as it happens every single time.
Help much appreciated! Thanks
Hello,
My Versions:
WP 5.7.2
bbPress 2.6.6
BuddyPress 8.0.0
HOME
This custom function stopped working fully when bbPress changed tables from usermeta to postmeta. Particularly, new users are no longer automatically subscribed to subforums. (We don’t use Groups yet, so I don’t know if that works or not.) Any help would be very greatly appreciated!
/** GROUP AND FORUM SUBSCRIPTIONS
* SUBSCRIBE NEW USERS TO GROUPS AND FORUMS
* This critical code subscribes new users to BuddyPress Groups and bbPress Forums,
* according to corresponding xProfile interest registration user choices!
* “Add to BuddyPress groups and forums (including sub-forums) based on xProfile checkbox selection”
* “add-to-buddypress-groups-based-on-xprofile-selection-upon-activation.php”
* Author: Harsha Venkatesh (“Greathmaster”, formerly of Paid Memberships Pro)
*/
//Subscribe a user to a group
function my_bp_core_activated_user($user_id)
{
$groups = array(2 => “HIKING”,
3 => “PADDLING”,
4 => “CYCLING”,
5 => “SKIING”,);
$forums = array(“HIKING” => 7142,
“PADDLING” => 7145,
“CYCLING” => 7147,
“SKIING” => 7066);
$selected_groups = xprofile_get_field_data(‘149’, $user_id);
if(!empty($selected_groups))
{
foreach($groups as $group_id => $group_name)
{
if(in_array($group_name, $selected_groups))
{
groups_join_group($group_id, $user_id );
//bbp_add_user_forum_subscription( $user_id, $forums[$group_name] );
subscribe_to_forums($user_id, $forums[$group_name]);
}
}
}
$overall_group_id = 1;
$overall_forum_id = 7133;
groups_join_group($overall_group_id, $user_id );
//bbp_add_user_forum_subscription( $user_id, $overall_forum_id);
subscribe_to_forums($user_id, $overall_forum_id);
}
//Subscribe a user to a forum and it’s sub forums
function subscribe_to_forums($user_id, $forum_id)
{
//subscribe to the parent forum
bbp_add_user_forum_subscription( $user_id, $forum_id);
//subscribe to sub forums (if they exist)
if (bbp_get_forum_subforum_count( $forum_id ) > 0)
{
$sub_forums = bbp_forum_get_subforums($forum_id);
foreach($sub_forums as $sub_forum)
{
bbp_add_user_forum_subscription( $user_id, $sub_forum->ID);
}
}
}
function my_init()
{
add_action(‘bp_core_activated_user’, ‘my_bp_core_activated_user’,15, 1);
}
add_action(‘init’, ‘my_init’);
~end
When I try to use the form to register, it takes me to a login screen that I made with the Colorlib Login Customizer. I can create a new user with the Colorlib Login Customizer, though. My site is at http://dancing4locations.org. Thank you.