Forum Replies Created
-
In reply to: bbPress 2.6.10 – All pages return 404 errors
these 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?
In reply to: edit answer in forum not workwhere did this code come from?
In reply to: Forum topics posted on mobile device don’t registerdo you have anything set in dashboard>settings>discussion>moderation
I haven’t read this in detail (I’m just a guy sat in his kitchen trying to help others) but have you done this
Dashboard>tools>forums>repair forums and run all of them, but one at a time!
That should fix parent topics/replies
add this plugin
In reply to: Forums Not Showing on WordPress dashboard left menuso are you a keymaster as per the above?
In reply to: bbPress Subscription Feature Not Workinginstall
once activated go to
dashboard>settings>bbp style pack>Subscription Emails
and you can change the email address in those settings
In reply to: Remove e-mail field from “form anonymous”that’s good news – hope it stays fixed !!