Search Results for 'updated'
-
Search Results
-
Topic: Will it be updated?
Will the plugin be updated?
i bought a wordpress theme and it comes packed with bbpress as an important part of the theme.
i´d like to know because i´m about to cancel my subscription with the theme that comes with bbpress
the theme is this one
https://themeforest.net/item/docfi-documentation-and-knowledge-base-wordpress-theme/48614579
thanks!!
Hi bbPress Folks,
I currently have a WordPress multisite installation with several individual sites. My WordPress version is 5.9.1 and the bbPress version is 2.6.9.
On any given individual site’s WP Dashboard, in the “dashboard_right_now”/”At a Glance” section, the number of users shown is reflective of the total number of users on the entire multisite network, as opposed to the total number of User on the individual site.
When it comes to multisite installations, can the output logic for this Users number be updated to reflect the number of Users for an individual site instead of the entire multisite network?
Thanks very much,
Matthew HuntleyHi,
We recently moved our site from a previous host to WordPress.com, and in doing so updated the site to the Twenty Twenty-Four theme. We use bbPress for discussion forums because it integrates with Memberpress courses.
All was good on the old site, but now bbPress and any mentions of Forums has disappeared from the WP Admin dashboard. I’m double checked that I am a bbPress keymaster, and also installed the bbPress Style Pack plugin, but don’t see anything there that solves my problem. I have also seen some people with a similar issue say that the All in One SEO plugin was the culprit, but that is not installed on the site.
We are running version 6.4.3 of WordPress.
Can anyone please help me get forums working!
Thank you!
Hello, I suddenly have a very strange problem since a few days.
When someone creates a new topic the timestamp is shown as last updated “54 years ago”. But only when I am in the topic.
“This topic has x replies (…) last updated 54 years ago. I didn’t update anything…
Topic: Expired Version ?
My WordFence reported that the bbpress plugin has not been updated in a couple years. Although I have enabled auto updating and I am positive it has been updated during that time.
Before I pursue this with WordFence, is there anything you know that would cause this?
I have a screenshot of the WF error screen if that helps.
Duane
Topic: Abandoned?
Word Fence security plugin told me today:
“Issue Found:
The Plugin “bbPress” appears to be abandoned (updated November 29, 2021, tested to WP 6.3.2).
Type: Vulnerability Scan”Is this true?
In a bbPress forum I want to prevent participants from creating topics but allow replies. In searching the Internet I found code examples from which I selected some to build a plugin. I know a little PHP but WordPress is like a “black box.”
add_action(‘wp_loaded’,’modify_participant’);
function ‘modify_participant'()
{
add_filter(‘mod_participant’, ‘upd_participant’);
}function upd_participant($role,$caps)
{
$role = bbp_get_participant_role();
$caps = modify_capabilities($role);
}function modify_capabilities($role)
{
return array(// Topic caps
‘publish_topics’ => false,
‘edit_topics’ => false,
‘edit_others_topics’ => false,
‘delete_topics’ => false,
‘delete_others_topics’ => false,
‘read_private_topics’ => false,// Topic tag caps
‘manage_topic_tags’ => false,
‘edit_topic_tags’ => false,
‘delete_topic_tags’ => false,
‘assign_topic_tags’ => false
)
}For instance the WP loaded hook causes it to run once at the start which should call those functions to initialize things. Is an add_filter also executed at that time to complete initialization? Then the black box proceeds with the bbp_get_parcipant_role routine so that the capabilities array elements can be updated. I read that WP filters always expect an object to be returned. It seems that these wouldn’t be permanent but just temporary in memory for executing that page. However my suspicion is that more coding would be necessary because that would be too much to depend on the black box for.
Hello!
Question might seem stupid but hear me out;
The last update, per the download page, seems to be from November 2021.
Usually, a plugin that hasn’t seen any updates in the last year, to me, is abandonned and should not be used in a new production; Theres always a little nugget to change every once in a while, so even the most basic of plugins, barring a few exceptions, get updates at least once a year.
But, bbPress has not been updated in a year and a half; is it just that there is nothing to fix/modify, or was bbPress left behind to make place for a new forum plugin by the WP Core team and that should be the thing I do install?
I ask because I am right now creating a brand new site where bbPress would be used. So if the current plugin is under another name, I should install that one and not this one.