Forum Replies Created
-
In reply to: Anonymous posting fields
have fun
In reply to: Anonymous posting fieldschange
<p> <label for="bbp_anonymous_email"><?php esc_html_e( 'Mail (will not be published) (required):', 'bbpress' ); ?></label><br /> <input type="text" id="bbp_anonymous_email" value="<?php bbp_author_email(); ?>" size="40" maxlength="100" name="bbp_anonymous_email" /> </p>
to
<input type="hidden" id="bbp_anonymous_email" value="anon@anon.com" name="bbp_anonymous_email" />
that just makes all entries anon@anon.com, so it passes the email format check
In reply to: Why is index sooooo slowGreat – I’m glad you got to a fix!!
In reply to: Topics under forums in urlsok, I think I understand, but guessing form names is also possible.
Maybe this is what you need
In reply to: Need Help PleaseThe box does exactly what it says it does, it allows ‘GUESTS’ to publish, it says nothing about allowing anonymous posting.
A guest to my house is someone I know or want to be able to ID and maybe contact after their visit if I need to – say because they left something or I want to ban becuase they were not nice. Just opening the doors and allowing anyone to wander round my house is not something I want.
That is the logic behind guests.
Now you want anonymous posting, which is fine if you want it, but it’s not how the software out of the box works. Being frustrated by this is not really something you should be, it doesn’t work how you want, but it has to work some way, and it works how most people want.
So chill ! 🙂
Now if you want anonymous posting, and know how to move a file between your pc and your site, then come back and I’ll help you create that.
In reply to: How do i remove this from the edit user pagegreat – glad you are fixed
In reply to: How do i remove this from the edit user pageyou’d need to amend
\bbpress\templates\default\bbpress\form-user-edit.php
These instructions show what is needed
find
wp-content/plugins/bbpress/templates/default/bbpress/form-user-edit.phptransfer this to your pc and edit
and save
create a directory on your theme called ‘bbpress’
ie wp-content/themes/%your-theme-name%/bbpresswhere %your-theme-name% is the name of your theme
Then transfer the file you saved above and put in in the directory called bbpress that you created above, so you end up with
wp-content/themes/%your-theme-name%/bbpress/form-user-edit.phpbbPress will now use this template instead of the original
In reply to: Anonymous posting fieldsyou’d need to amend
\bbpress\templates\default\bbpress\form-anonymous.php
In reply to: Start topic after being activenothing I know of out of the box.
On this forum, spam users tend to post 2 or 3 replies before spamming a topic, so I suspect that your approach might not work.
you could use
to control initial posters, so approve them manually
In reply to: Topics under forums in urlsWhat I’m trying to accomplish has to do with controlling access to various forums based on the url.
do you want to expand on what you are planning to achieve please? Does control mean prevent ?
In reply to: Cannot click comment field or leave commentit could be a theme or plugin issue
Themes
As a test switch to a default theme such as twentyfifteen, and see if this fixes.
Plugins
If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
Then come back
might well be theme related, does your theme have any bbpress templates in it?
In reply to: best way to add translations?the latest version changed some phrases and they have yet to be added into the translations.
you can use
once activated go to
dashboard>settings>bbp style pack>translations
In reply to: Error while creating new TopicI suspect a slow site and they are pressing then submit twice but could be something else
In reply to: How do i remove this from the edit user pagefrom where?
In reply to: moderate posts before publishingIt’s unlikely to break, it hooks to bbpress functions that are stable.
In reply to: New Topic pageyou can use these shortcodes in a page
[bbp-topic-form] – Display the ‘New Topic’ form where you can choose from a drop down menu the forum that this topic is to be associated with.
[bbp-topic-form forum_id=$forum_id] – Display the ‘New Topic Form’ for a specific forum ID.In reply to: moderate posts before publishingstill works
In reply to: Change css id’sSince I have no idea why you think css is an issue, then no I don’t have a better idea 🙂
In reply to: How to mitigate spam registration?which exact plugin are you using?
In reply to: How to mitigate spam registration?since bbpress just uses WordPress registration, then there are a wide variety of registration plugins that will let you add things like recaptcha to prevent bot registration – just google WordPress registration plugins and have a look around eg (just an example)
If you allow users to register you will always have nuisance users to deal with – comes with then territory :-). I clear about 6 spam posts on here a day.
In reply to: bbPress Forums subtitlegreat – glad you are fixed
In reply to: bbPress Forums subtitlenot quite sure why you theme is displaying that.
try this in then custom css part of your theme
.bbpress h5.description { display: none; }
but check that it does not hide things elsewhere in bbpress
🙂
In reply to: Change css id’sgoogle – plenty of courses on-line
I will state again that what you are trying to do is pretty pointless.