Forum Replies Created
-
In reply to: Open forum pages goes blank
Ok, I see you also posted on their support page, which was going to be my next suggestion.
Since your code is on a local server, I obviously can’t take a look.
So now let’s try.
Create a file called bbpress.php in your theme folder
Add the following code to the bbpress.php file
<?php /** * bbPress wrapper template. */ get_header(); ?> <?php while( have_posts() ): the_post(); ?> <?php the_content(); ?> <?php endwhile; ?> <?php get_footer(); ?>If you need a sidebar add
<?php get_sidebar(); ?>before the footer line
See whether that works for you.
In reply to: Forum QuestionThere is no reason that you shouldn’t use the main theme APART from the danger that on an update of the theme you’ll lose the changes. But as you’ve done changes, you have that risk now with your existing changes, and hopefully have a note of them ! As long as you keep a copy of the functions file, you should be able to just add this code to the theme’s functions file at the end.
If that doesn’t work, come back, and I’ll cut the code into a plugin for you, but would prefer not to do that if I don’t have to (time!)
In reply to: Incomplete list of forumsok, I think you might need to change a parameter.
Try the following filter in your functions file
function bbp_increase-forums-per-page( $args = array() ) { $args['posts_per_page'] = get_option( '_bbp_forums_per_page', 150 ); return $args; } add_filter( 'bbp_before_has_forums_parse_args', 'bbp_increase-forums-per-page' );Come back and let us know if that worked.
In reply to: How to put [prefix] ???ok, thanks.
No I don’t think that is possible with bbPress.
In reply to: Hitting 50 forum limit? What can I do?tempapte-tags.php was renamed to just template.php
bbpress/includes/forums/template.php
However you should be able to use the following filter in your functions file, just amend the 100 to whatever you want
function bbp_increase-forum-per-page( $args = array() ) {
$args[‘posts_per_page’] = get_option( ‘_bbp_forums_per_page’, 100 );
return $args;
}
add_filter( ‘bbp_before_has_forums_parse_args’, ‘bbp_increase-forum-per-page’ );In reply to: max 50 forums ?“The problem is, there is no template-tags.php”
It was renamed to just template.php
bbpress/includes/forums/template.php
However you should be able to use the following filter in your functions file, just amend the 100 to whatever you want
function bbp_increase-forum-per-page( $args = array() ) { $args['posts_per_page'] = get_option( '_bbp_forums_per_page', 100 ); return $args; } add_filter( 'bbp_before_has_forums_parse_args', 'bbp_increase-forum-per-page' );In reply to: [Resolved] [bbp-topic-index] in forum pageCheck other plugins
Check that no other plugins are affecting this.
Turn off all other plugins, and see if that fixes the problem. If the problem is resolved, add back one at a time to see which is causing the conflict.
Check themes
If plugins are not the cause, then it may be a theme issue. Switch to a default theme, such as twentytwelve, and test.
In reply to: Subscribe all users to a forum (SQL)@joceh78 – could you post the sql command you eventually used, so that someone searching this forum at a later date can see exactly how you fixed it.
Thanks
In reply to: Login doesn't worktry typing your url followed by wp-login.php into the address bar
eg
http://www.mysite.com/wp-login.php
and then login and then logout
Then try the widget again
I have had similar issues on occasions, and to me it seems like wp-login gets itself confused as to whether you’re logged in or not. This seems to reset it.
Come back if that doesn’t work
In reply to: Paid Users2 member plugin is used by a lot of people, but haven’t used it myself.
In reply to: Font Size issues‘I’m using the newest bbPress plugin as well as the updated version of WP 3.8.1. My site is novasev.com. You can see this issue by navigating to the Requests under Rainmeter forum and then the forum under NovaSev.com Administration.’
sorry couldn’t follow this as I can’t see how to get to the rainmeter forum from the menu.
Can you post two specific links and more detail on what is different in each
In reply to: Open forum pages goes blankCheck other plugins
Check that no other plugins are affecting this.
Turn off all other plugins, and see if that fixes the problem. If the problem is resolved, add back one at a time to see which is causing the conflict.
Check themes
If plugins are not the cause, then it may be a theme issue. Switch to a default theme, such as twentytwelve, and test.
In reply to: How to put [prefix] ???ok, but where does the prefix come from? Otherwise surey you just type it in the topic title?
I suspect that this would not be easy to do automatically, but please give me more details.
In reply to: BBpress Forum List Widget in Hierarchy Format?it’s doable, but would need a large re-write of the widget code, so unless you want to dive into deep level code, I suspect that it will just look like that – sorry !
In reply to: How to put [prefix] ???Can you give a specific example so that we can understand
In reply to: No toolbar availableNo, bbpress looks for the following files in this order for its page template
plugin-bbpress.php
bbpress.php
forums.php
forum.php
generic.php
page.php
single.php
index.phpso as long as you have a bbpress.php it will look no further
Think this needs someone who is very familiar with both the theme and bbpress !
Have you tried their official support forum
In reply to: Layout/format issuesok had a quick look
1) class used to display the title is bbp-forum-title
yours seems to be right justified2) The career path is in the right place – but normally it’s wrapped in a <h1> header to make it a proper title
I think these are theme related – maybe try the theme’s support forum?
In reply to: User ProfilesI’m presuming the one for your wordpress site is the one on the top right that is in the toolbar? Wasn’t clear from your website as obviously I’m not logged in !
If so, I just turn this off, it never fits with a theme anyway, and now you have a profile in bbPress you don’t need it anymore. So maybe just use the bbPress one, you can call it from menu’s and widgets, so it can be site-wide.
In reply to: Breadcrumb issue – kindaWithout spending a lot of time cracking open the breadcrumb trail plugin, I couldn’t say.
May try their support forum
https://wordpress.org/support/plugin/breadcrumb-trail
Hope you get fixed !
In reply to: Order of TopicsNot that I know
In reply to: Breadcrumb issue – kindashowing twice is the way bbpress likes doing it !
You can turn off the forums root slug in settings>forums
or play with this code
Don’t know how the latter would work with your plugin
In reply to: User ProfilesNot totally sure what end result you are after, but the following plugins add a topic count and 4 extra user fields
(it’s also on wordpress plugins)
(will be on wordpress plugins in a few days)In reply to: Breadcrumbs > Members directorystart by looking at
In reply to: Layout/format issuesNot sure quite how far you have progressed or not since posting, but your links don’t resolve to anything that equates to the questions.
Let us know if you still need help !