Forum Replies Created
-
In reply to: Frustrating Email Issues
oh, 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 ; }
In reply to: Forum Search Exclude Archived‘closed’ in bbpress just means that the area cannot have new things added.
If you want to have an old forum that is not seen by users, then make it hidden.
In reply to: Making bbPress functions available for WordPress?I’m just a humble user who helps out here. I did write quite a bit of the documentation, but not functions. A list would be very large nowadays, and quite hard to describe.
suggest you post any q’s here, and I’ll try and find them for you
In reply to: How to change admin notification email address?sorry, untested and taken from my files – try
function rew_no_reply_per_forum ($reply_address) { $forum_id = bbp_get_forum_id() ; if ($forum_id == 6 ) $reply_address = 'xxx@yyy.com' ; if ($forum_id == 7) $reply_address = 'abd@hdhd.com' ; return $reply_address ; } add_filter ('bbp_get_do_not_reply_address', 'rew_no_reply_per_forum') ;
In reply to: Themethemes can stop my style pack plugin working.
please specify what in your example you would like changed and to what
In reply to: Newbie questionbbpress uses wordpress login, so they only need to login once.
a public forum is visible to logged in AND not logged in
A private forum is only visible to logged inIf you set anonymous posting then everyone can post topics and replies, otherwise just logged in users can post
In reply to: How to change admin notification email address?try this in your functions file
function rew_no_reply_per_forum ($reply_address) { $forum_id = bbp_get_forum_id() ; if $forum_id = 6 $reply_address = 'xxx@yyy.com' ; if $forum_id = 7 $reply_address = 'abd@hdhd.com' ; return $reply_address ; } add_filter ('bbp_get_do_not_reply_address', 'rew_no_reply_per_forum') ;
In reply to: Forum Search Exclude Archivednot quite sure what you mean by ‘archived’ content
bbpress has statuses of
public,
private
closed
spam
trashspam and trash depend on the user capability – so keymasters and moderators see these, but not participant level.