Forum Replies Created
-
In reply to: Replies are sent to Trash automatically
up the no. links at
dashboard>settings>discussion
In reply to: Replies are sent to Trash automaticallysome replies you say – you’ll need to work out what they have in common and why others get through. so aouthor, content, type of content.
also look at
dashboard>settkngs>discussion and see if these are breaking any rules- particularly no. links
In reply to: Topics and Replies not showing after importcan you try running
dashboard>tools>forums>repair forums and run the first one – Recalculate parent topic for each reply
and let me know if that now fixes
In reply to: Topics and Replies not showing after importok, that should have worked for replies as well – let me take another look at the code
dashboard>settings>bbp style pack>forum templates
and read the help there
the width is determined by the theme
line breaks are fixed in forum display in style pack
yoi can set categories as separate in forum templates in style pack
In reply to: Topics and Replies not showing after importI think I might know the issue.
can you
1. backup your site or have the ability to go back to a previous version
2. download this plugin
3. install and activate
4. create a page called whatever you like, and put the shortcode
[fix-topics]
in it
5. view the page, select ‘run’ and click submityour topics and replies should now be fixed.
lists re very subjective – what I find useful you will find useless or not how you want it.
https://colorlib.com/wp/bbpress-plugins/
gives a list
I’d add bbp style pack to that list, but I wrote it, so I’m biased
That plugin also lists other plugins that I have found added value to forums
maybe theme related -link to your site please – or that there is a limit to size 🙂
In reply to: 404 error on css and js filesyou can dequeue from bbpress and then reload as you wish
so for styles
add_filter( 'bbp_default_styles', 'rew_dequeue_bbpress_css' ) ; function rew_dequeue_bbpress_css ($defaults ){ unset ($defaults['bbp-default']) ; return $defaults ; }and re-enqueue it using your own function
In reply to: Login Leads Users To URL For Admin Loginok, thanks, but sorry I can’t really help further.
I will state again that WordPress handles both registration and login, and as long as you don’t use the login widgets or shortcodes then bbpress should not be involved.
I hope you get a resolution
In reply to: Topics Not Showing on bbpress forumit 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: Login Leads Users To URL For Admin Loginyes, but as far as I can see the activation of their account is not part of bbpress.
perhaps we can proceed further by three things.
1. give me the url of the registration on your site
2. tell me how you ‘changed the url for my administration login to hide from hackers’
3. list the plugins yo are using on your siteIn reply to: Login Leads Users To URL For Admin Loginbbpress doesn’t have a ‘your account is activated’ page – something in WordPress is doing this, not bbpress.
In reply to: Move “New Topic” element to the top of the page.great – glad you are fixed
In reply to: Move “New Topic” element to the top of the page.find
wp-content/plugins/bbpress/templates/default/bbpress/content-single-forum.phptransfer this to your pc and edit
you’ll see
<?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' ); ?>change this to
<?php if ( ! bbp_is_forum_category() && bbp_has_topics() ) : ?> <?php bbp_get_template_part( 'form', 'topic' ); ?> <?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( 'form', 'topic' ); ?> <?php bbp_get_template_part( 'feedback', 'no-topics' ); ?>and save
then 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/content-single-forum.phpbbPress will now use this template instead of the original, and the topic form will now appear before the forums
In reply to: Topics Not Showing on bbpress forumreplies belong to topics
topics belong to forums or sub forums
forums can belong to categories (or are just top level forums)Categories cannot have topics
In reply to: Topics and Replies not showing after importok, can you go to
dashboard>topics>all topics and look at edit for any topic – does it show a forum ?
In reply to: Login Leads Users To URL For Admin Loginok, so where are the registering ? ie from what part of your site – I need to understand what is sening the ‘activated’ email.
the incorrect login is fixed by :
once activated go to
dashboard>settings>bbp style pack>Login Failures
In reply to: Change permalinks on bbPressIn reply to: URL/Permalinks on topicssee Milan’s response above
In reply to: Move “New Topic” element to the top of the page.are you able to use ftp?
If so, I can give you details on how to amend a template.
great – glad you are fixed !!
that is a question – you should only have it once, either in your theme function file or in code snippets not in both !
so have you got this is your functions files as well ?