Forum Replies Created
-
In reply to: Change log
Nothing new
The following 13 errors fixed
View RSS feeds return the all-topic feed if the view doesn’t exist
After export from SMF error: bbp_converter_db_connection_failed
BBP_Converter_DB does not have a method “__destruct
Restoring a trashed topic will set the post status to ‘draft’ as of WordPress 5.6.0
Default arg to “bbp_add_forums_roles()” can cause errors
Reduce subscription email subject duplication
Editor buttons missing since 2.6.8 upgrade
bbp_get_reply_url() generates incorrect link for a spammed topic
Search displays hidden forums to participants
The content-archive-forum.php template does not filter if the search form should be displayed
Recount topics for each user, counts only published topics
Statistics widget throws Undefined index if no replies or topics tags
“You may use these HTML tags and attributes:” not escaped correctlyIn reply to: bbPress 2.6.11 is out!🙂
In reply to: BBPRESS 2.6.10!Thanks John !!
In reply to: bbPress 2.6.10 – All pages return 404 errorsthanks, I’m away at the moment on other stuff, so just trying to get something going until I can look at it, so thanks for spotting 🙂
In reply to: bbPress 2.6.10 – All pages return 404 errorsI have raised a trac ticket for this release which hopefully the authors will look at
In reply to: bbPress 2.6.10 – All pages return 404 errorssorry, was answering an earlier question as to what was in the new release
In reply to: BBPRESS 2.6.10!these 13 tickets are in 2.6.10 I believe
In reply to: bbPress 2.6.10 – All pages return 404 errorsthese 13 tickets are in 2.6.10
In reply to: bbPress 2.6.10 – All pages return 404 errorswhat other bbpress related plugins are you running?
In reply to: bbPress 2.6.10 – All pages return 404 errorsthanks, I’ll take a look, but suggest you remain at 2.6.9 for the moment
In reply to: bbPress 2.6.10 – All pages return 404 errorsand if you are using any caching software, clear all your caches
In reply to: bbPress 2.6.10 – All pages return 404 errorsGo to Settings > Permalinks, select the default permalinks then save. Now select your preferred permalinks structure. This flushes the rewrite rules and can solve some possible 404 errors.
In reply to: Registration without email requirementor final thought, just have a contact form for registration and add users manually. You can set a fictitious email address (they are not shown on the front end)
Theyb have to be unique, so you could just increment a fictional email address – example.com is used by many people as a domain address that is not real eg
user1@eaxmple.com
user2@example.com
user3@example.comand use the moderation in bbp style pack above to approve all posts
In reply to: Registration without email requirementOtherwise it is doable but far beyond free help – as I say bbpress just uses wordpress registration so maybe contact a wordpress developer who can do some code for you.
In reply to: Registration without email requirementok, without an email address, is in effect registration not necessary (?), as you have no way to contact users or validate who they are?
If so I’d suggest you:
1. allow anonymous posting
dashboard>settings>forums>Anonymous Allow guest users without accounts to create topics and replies
2. use Akismet to reduce/stop spam
3. install
once activated go to
dashboard>settings>bbp style pack>Moderation and follow instructions and set that all posts need to be moderated
4. go to
dashboard>settings>bbp style pack>Topic/Reply Form
and set 19, 20 and 21 – 20 allows you to hide the email field
In reply to: Get_Forum_Name from functions.php$forumname = bbp_get_forum_title( $post->forum_id );
wow – that’s great news, glad you are fixed, and as always I learn something from helping others 🙂
In reply to: edit answer in forum not workI can only suggest you enable debug and see if this throws up an error
In reply to: Registration without email requirementbbpress just uses wordpress registration.
Wordpress requires users to have an email address for various reasons, including password changing and resetting.
Whilst this is certainly achievable with code, I do not know of any plugin that allows this.
No-one sees the email address apart from WordPress admins and the user.
I’m no mysql expert, but on my database the post parent is indexed
http://www.rewweb.co.uk/wp-content/uploads/2019/07/Screenshot-2024-06-28-080147.png
as are other fields
I have no idea if clicking the bottom option lets you add this, but there must be a way, and agree this sounds like an issue that needs fixing
In reply to: edit answer in forum not workso this should work, but looks like your function
// change admin links displayed add_filter ('bbp_reply_admin_links', 'change_admin_links' ) ; function change_admin_links ($r) { $r['links'] = apply_filters( 'rw_reply_admin_links', array( 'edit' => bbp_get_reply_edit_link ( $r ), //'move' => bbp_get_reply_move_link ( $r ), //'split' => bbp_get_topic_split_link ( $r ), 'trash' => bbp_get_reply_trash_link ( $r ), //'spam' => bbp_get_reply_spam_link ( $r ), //'approve' => bbp_get_reply_approve_link( $r ), 'reply' => bbp_get_reply_to_link ( $r ) ), $r['id'] ); return $r['links'] ; }
In reply to: edit answer in forum not workcorrection, that will not wok
In reply to: edit answer in forum not worktry
add_filter ('bbp_get_reply_admin_links', 'change_admin_links' ) ;
ok, not sure what to suggest.
do you have a link to your site?
hmmm…
so have you actually looked at the database tables? or are you getting the status from my code?