Forum Replies Created
-
In reply to: Can’t Read Toolbar after Update
so try the css above, and let me know the result.
In reply to: Can’t Read Toolbar after UpdateThe trouble is I can’t see what you are seeing as that only appears when logged in !
try
#bbpress-forums div.bbp-the-content-wrapper input { color: #000; }In reply to: bbPress Moderation Tools problem moderation flaggreat – glad you are fixed, and thanks for posting then solution to help others
In reply to: Can’t Read Toolbar after Updateif you mean the
edit|trash| etc.
then put this in your theme’s custom css
span.bbp-admin-links a { color: #000; }In reply to: show topic to only who created it ,and set up topic permissions tab, which allows for this
In reply to: Security built into bbpress/buddypress/wordpressbbpress and buddypress just use WordPress login, and WordPress lets plugin authors do this – only so much you can expect the WordPress authors to support. Wanguard shut down due to stress on author.
As a plugin author, I sympathise – it’s amazing how much abuse you get for providing something for free.
Plenty of solutions out there that use a variety of methods. eg
In reply to: Hide IP Address just from Moderatorsgreat – glad you are fixed
In reply to: show topic to only who created it ,I presume you also want say moderators and keymasters to see the topics, and be able to reply? if so who ?
In reply to: users cant change password after updatehmmm -I don’t get the confirm in my front end edit profile – ie from clicking my name within bbpress- I just get ‘generate pasword’ and then confirm that ?
In reply to: How can I make it like the bbpress.org Forum?the theme for bbpress is here
In reply to: Hide IP Address just from Moderatorsyou will need to amend a template, so need to be able to edit and ftp files.
If so, then
find
wp-content/plugins/bbpress/templates/default/bbpress/loop-single-reply.phptransfer this to your pc and edit
change line 46 from
<?php if ( current_user_can( 'moderate', bbp_get_reply_id() ) ) : ?>
to<?php if ( bbp_is_user_keymaster() ) : ?>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/loop-single-reply.phpbbPress will now use this template instead of the original and only keymasters will see the ip address
In reply to: Subscribe to Forum not workingyou are assuming that because it doesn’t work for you it doesn’t work for anyone 🙂
It works fine on my test site.
so create a new topic and subscribers to the forum get an email when a new topic is created.
If this is not happening for you, then it 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
In reply to: Multiple forums with access requestif you set forum visibility, you can then set a redirect to a page for non-logged in users and another for logged in users.
so create a page and use a contact form plugin, such as contact form 7, so they can request access to other forums, which will then send you an email.
so
install contact form plugin, there are many but contact form 7 is very popular.
create a form with maybe a drop down list of forums users can request access to
create a page and put shortcode to the form in this
set redirect in private groups to go to that pagegreat – glad you are fixed
In reply to: /forums Root Loads a Blog-Type Pagegreat – glad you are fixed!!
In reply to: /forums Root Loads a Blog-Type Pagepresuming that is what is set in the forums settings, then it 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
In reply to: RE: Style All Other Pages Like Home PageIn reply to: Stop forum posts from showing on feedI think if you set
dashboard>settings>forums>rss feeds per page to zero it should stop, but that does depend on how your theme an other plugins are doing the links, it may not work
agree, let’s see if Milan responds 🙂
also read
How to Fix the “Sorry, This File Type Is Not Permitted for Security Reasons” Error in WordPress
might be worth trying one of the plugins?
I’ve had a quick look, but could spend the rest of Christmas looking in code
I’d suggest you raise a ticket in bbpress attachments
https://wordpress.org/support/plugin/gd-bbpress-attachments/
ok, not a plugin I’ve looked at in detail – I’ll have a quick look later
so are you running an additional plugin such as bbpress gd attachments to get this browse button ?
ok, but exactly how are you uploading – what button/link/code are you doing?
Sounds a dumb question, but is relevant
have a look at this
https://wordpress.stackexchange.com/questions/44777/upload-mimes-filter-has-no-effect
seems maybe you can only have one text/plain entry?
the types are listed in
https://codex.wordpress.org/Function_Reference/get_allowed_mime_types
and maybe try
add_filter( 'upload_mimes', 'wpse44777_upload_mimes' ); function wpse44777_upload_mimes( $mime_types ) { // First we unregister the old key unset( $mime_types['txt|asc|c|cc|h'] ); // Then we add a new one ! isset( $mime_types['txt|asc|c|cc|h|nvn'] ) AND $mime_types['txt|asc|c|cc|h|nvn'] = 'text/plain'; return $mime_types; }