Forum Replies Created
-
In reply to: Two Forum Views (Same Page)
suggest you put it as a project on
In reply to: Need private areas, encryption and some other stuffhttps://wordpress.org/plugins/bbp-private-groups/ would solve the first one, but not encryption or a network of private diaries
This all sounds very bespoke and time consuming
In reply to: Change fieldsgreat – glad you’re fixed !
In reply to: Notification Email Link problemsNo problem, I fully understand your issue.
This is working as designed, the idea being that a private forum should not indicate that a subject exists.
Therefore it takes you to your theme’s 404.php page.
You could modify this page to include a login offer, but after login this would only take them to the home or forums page, not to the link, but that might be better than just a 404.
If you want to go that route, contact me via my website
In reply to: Paid Support?I’ve posted a response in your other thread
In reply to: Notification Email Link problemssorry most mods look for topics with no replies as ‘new’ so by bumping after less than a day you fell through the system.
support on here is free, but run by volunteers.
Can you tell me what the link in the email is?
In reply to: BBPressthis lets me login fine and it all seems to be working
ok, what theme and plugins are you running?
In reply to: Adding Custom View Shortcodeand since bbp_reply_count is in the metadata, you’d need to refer to that
see
https://codex.wordpress.org/Class_Reference/WP_Query
so something like
add_action( 'bbp_init', 'view_twentyplus_posts_init' ); function view_twentyplus_posts_init() { $args = array( 'meta_key' => '_bbp_reply_count' , 'orderby' => array( 'meta_value_num' => 'DESC', 'title' => 'ASC' ), 'meta_query' => array( array( 'key' => '_bbp_reply_count' , 'value' => '19', 'compare' => '>', ), ); ); bbp_register_view( 'twentyplus_posts', __('Popular Posts', 'twentyplus'), $args, false ); }bbpress doesn’t do it’s own moderation
1. Do you have askimet running? This can flag users, and bbpress looks at this database.
2. What do you have set in Dashboard>settings>discussion in moderation and balcklists
Great – glad you’re fixed, and sorry I didn’t get to you earlier.
Also thanks for sharing the solution which will help others in future
In reply to: Gallery Drag and Dropnot sure why you’re posting this in bbpress support forum?
In reply to: Stop users from making topicsok,
create a directory on your theme called ‘bbpress’
ie wp-content/themes/%your-theme-name%/bbpress
find
wp-content/plugins/bbpress/templates/default/bbpress/content-single-forum.php
Make a copy of this file, and put in in the directory called bbpress that you created above, so you end up with
wp-content/themes/%your-theme-name%/bbpress/content-single-forum.php
bbPress will now use this template instead of the originalthen change lines
<?php if ( !bbp_is_forum_category() && bbp_has_topics() ) : ?><?php bbp_get_template_part( ‘pagination’, ‘topics’ ); ?>
<?php bbp_get_template_part( ‘loop’, ‘topics’ ); ?>
<?php bbp_get_template_part( ‘pagination’, ‘topics’ ); ?>
<?php bbp_get_template_part( ‘form’, ‘topic’ ); ?>
<?php elseif ( !bbp_is_forum_category() ) : ?>
<?php bbp_get_template_part( ‘feedback’, ‘no-topics’ ); ?>
<?php bbp_get_template_part( ‘form’, ‘topic’ ); ?>
<?php endif; ?>
to
<?php if ( !bbp_is_forum_category() && bbp_has_topics() ) : ?><?php bbp_get_template_part( ‘pagination’, ‘topics’ ); ?>
<?php bbp_get_template_part( ‘loop’, ‘topics’ ); ?>
<?php bbp_get_template_part( ‘pagination’, ‘topics’ ); ?>
<?php elseif ( !bbp_is_forum_category() ) : ?>
<?php bbp_get_template_part( ‘feedback’, ‘no-topics’ ); ?>
<?php endif; ?>
and save
that should do it
In reply to: Participants aren't able to edit their own topicsHow are you hiding the forums from non logged in users
In reply to: BBPressbut all other can´t com in
so what are they getting – a login screen and then what happens?
In reply to: BBPressI have a problem with BBpress. Mmembers can´t login at my forum and see the post
you will need to provide more information to enable us to help you – the above is like saying ‘my car won’t start – what’s wrong?’
why can’t members log in, what are you using to log in, do they get this, if they do what error messages are they getting, how long has this been going on – always, just started, what else has happened to the site eg upgrades, additional plugins, new themes, can you log on? is it just one bbpress level or all levels etc. etc. etc.
In reply to: Import ForumsIt’s probably just ‘wp’
If that doesn’t work come back
In reply to: Turning off file uploadsHey no problem !!
In reply to: Turning off file uploadsok, have received the email, and the attachment settings are not part of bbpress, so they must be part of a plugin.
Do you know which one, and is it a forum specific one?
In reply to: Import Forumsbbpress will need to access the old database, so it will need the name, and within that database and ‘prefix’ which helps separate databases.
Is there anyone you can contact to find out that info, or where is the database at the moment?
seems they are helping you on the trac ticket, but first step would be
It could be a theme or plugin issue
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.
Themes
If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentytwelve, and see if this fixes.
Then come back
In reply to: Turning off file uploadsif you continue to have trouble, email me via my website
In reply to: User role upgradeI suspect it would be a hook into a free membership plugin like simple membership
If you’d like me to look in detail at this, contact me via my website
In reply to: Import ForumsNo you’re not blind! it’s hidden in
Dashboard>tools>forums>import forums
In reply to: Turning off file uploadsin each forum you can set permissions to view and comment and so on, I did it in there.
that’s pages not forums??
Can you give the precise steps starting with Dashboard>….