Forum Replies Created
-
In reply to: Deleting Post Versions
personally I wouldn’t bother for such a small number, but there are lots of plugins to do this.
Just go to the repository https://wordpress.org/plugins/ and type in ‘revision’
In reply to: Noob ?: How to post from backendso you have gone to
dashboard>topics>create new topic and filled in
Title (it won’t publish without one)
ContentDid you say what forum you wanted it published in (right hand side)
In reply to: some users get email notifications, others don’tEmails are notoriously difficult to fault find, as so much is beyond the website.
So start with
1. You should be aware that many spam filters strip messages that do not come from the correct address. So if your site is mysite.com and your email address in wordpress setting/general is fred @gmail.com then it is likely that messages will be dumped in transit. You need to set up email to come from your site eg fred @mysite.com, your hosting provider can help if needed.
2. Different email providers have different rules, so an email to fred @aol.com may be treated differently than fred @google.com if google and aol have different rules as the email passes through their servers, so some may get through and others not.
3. Just bbpress?
Then you need to see if this is wordpress wide or just bbpress.
Try https://wordpress.org/plugins/check-email/
4. Some people have fixed it with this plugin https://wordpress.org/plugins/asyncronous-bbpress-subscriptions/In reply to: Formating toolbar disappears for admin onlygreat – glad you are sorted
In reply to: Formating toolbar disappears for admin onlyI meant test with just bbpress, so eliminating toolkit, which you have done.
If it was working, and now is not, then something has changed with that account.
So first, I suggest you go though the settings for the working and not working user and check any differences
In reply to: phpBB import (again)@netweb – can you help here ?
In reply to: Formating toolbar disappears for admin onlyok, so does just bbpress (ie disable bbp toolkit) get the same response
In reply to: Frustrating Email Issuesoh, and take a look at this thread
In reply to: Frustrating Email Issuesbbpress just users wordpress login, so not really a bbpress issue.
I can only suggest you either post in the wordpress support forum, or the easy WP SMTP forum
not that I know – I cab only suggest as a test you remove your string modifier and see if that fixes.
amended the previous post to
_bbp_forum_slug
so in wp-options what is_bbp_forum_slug set to ?
If forum, then set it to chat
the slug is a setting held in the database, not in code or a file.
the single forum root slug is held in wp_options in the database, and is changed by the setting in
dashboard>settings>forums>single forum slug where you have a label of ‘discuusion’ and I even with buddypress have a description of ‘Forum’, so something is messing round with that and stopping you setting ‘forum’ I think.I don’t get ‘discussion’ as the single forum label when I use buddypress, so something else is setting that, hence my suggestions above.
so if you go to wp_options table and find _bbp_root_slug you can see what it is set to.
You could just go to wp_options table and find _bbp_root_slug and set it to ‘chat’
In reply to: What file does sub-forum layout on frontpageby code
//create vertical list subforum layout function custom_bbp_sub_forum_list() { $args['separator'] = ' '; return $args; } add_filter('bbp_after_list_forums_parse_args', 'custom_bbp_sub_forum_list' );or this plugin has it as a setting in
dashboard>settings>bbp style pack>Forum Display
In reply to: How to change admin notification email address?great – glad you are fixed
In reply to: Show the title in the forum indexsimply repeating what you have put before does not add to my knowledge – I am trying to help you, but do not understand what ‘then “search results for:” all posts and pages but no forum posts are displayed.’
are you doing some sort of search and why??
what is confusing me is that in
dashboard>settings>forums>single forum slug you have
discussion where I have forum, and it is this slug that is the extra one showing in the url.
Why you have discussion, I have no idea, I have not seen this before
all I can suggest is that it could be a theme or plugin issue issue, so you’ll need to test to find out which
Themes
As a test switch to a default theme such as twentyfifteen, and see if this fixes.
Plugins
Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
and see what is setting this to discussion
Then come back
In reply to: Themeunfortunately when themes don’t obbey the rules, I can’t code for them 🙂
In reply to: Themeno problem !
In reply to: Themeapologies put
.bbp-topic-content p { color: black !important; }In reply to: Show the title in the forum indexBut when I click on the forum index on “Mark all topics as read”, then “search results for:” all posts and pages but no forum posts are displayed.
sorry, can you explain a bit more
you go to the main index and click ‘mark all topics as read’ then what happens?
In reply to: Show the title in the forum indexOh, how can I get rid of the search function in the admin bar?
Don’t have the admin bar – it is horrible and breaks away from your theme, bbpress has profile edit which let the user access their profile.
There are plenty of plugins to hide the admin bar
https://en-gb.wordpress.org/plugins/search/admin+bar/ lists lots
In reply to: Themeput this is my plugin’s custom css tab
bbp-topic-content p { color: black !important; }what version of bbpress are you using ?
In reply to: Forum Search Exclude Archiveduntested, but this should do it
add_filter ('bbp_after_has_search_results_parse_args', 'my_function') my_function ($args) { // bbp_get_closed_status_id() REMOVED, $post_statuses = array( bbp_get_public_status_id(), bbp_get_spam_status_id(), bbp_get_trash_status_id() ); // Add support for private status if ( current_user_can( 'read_private_topics' ) ) { $post_statuses[] = bbp_get_private_status_id(); } // Join post statuses together $args['post_status'] = implode( ',', $post_statuses ); return $args ; }