Forum Replies Created
-
In reply to: Use the WordPress avatar
You’ll need to refer this to the theme authors as it’s a paid theme, so we can’t load it and look at what it’s doing.
In reply to: Shortcode on the page phpPossibly lots of things.
I appreciate that you English may not be good, but can you explain in more detail what you are trying to do?
Also
1. php won’t work in a page without a plugin
2. there is no shortcode display_forum
2. normally you’d use[bbp-single-forum id=$forum_id]
in a page and in php you’d use
echo do_shortcode( ‘[bbp-single-forum id forum id =ā5ā]‘ );
In reply to: Hueman theme issueIn reply to: Forum option won't show in DashboardbbPress is tested with wordpress default themes. It maybe a conflict – you need to check plugins and themes
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.
In reply to: Cannot access abc/forumsok, some themes don’t like this way to display.
so I try
look at item 3 and try method 2.
If that doesn’t work then come back
In reply to: Specific forum showing posts of the entire forum?ok, than, I now understand.
bbPress is tested with wordpress default themes. It maybe a conflict – you need to check plugins and themes
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 and tell us where the issue is
In reply to: Specific forum showing posts of the entire forum?no need to pay , just have a link to
In reply to: 404 on Edit my postok, when you hover on the edit, you should see the destination url that it is going to on the bottom of the screen, how does this differ from the one in the backend?
In reply to: 404 on Edit my posthmm…you have loads of topics, has this just started happening? and if so when?
something has changed !
Have you added any functions, or might be a plugin
bbPress is tested with wordpress default themes. It maybe a conflict – you need to check plugins and themes
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.
Otherwise try adding this at the bottom of your functions file
function change_reply_order() { $args['order'] = 'ASC'; return $args; } add_filter('bbp_before_has_replies_parse_args', 'change_reply_order');
In reply to: 404 on Edit my postI can se all that forum fine.
so you are only getting a 404 error when you edit a reply, topics are fine. Is this just in the front end, or editing a reply in the toolbar as well?
In reply to: disable Sidebari managed to have the index full width by making my own page with the forum shortcode and page set using full width layout. but once i click anywhere on the forum (go to a section, thread) the sidebar re appears.
That’s because it’s going back to the bbpress.php which isn’t working for you.
try replacing
if (have_posts()) : while (have_posts()) : the_post(); /** * Find the post formatting for the pages in the post-page.php file */ get_template_part('post', 'page'); if(comments_open( get_the_ID() )) { comments_template('', true); } endwhile;
with
while( have_posts() ): the_post(); the_content(); endwhile;
in your bbpress.php file
In reply to: disable Sidebartry logging out and in again
In reply to: Blank pageyep, all working for me !
In reply to: Custom Query Loopcheck out this reference (bbp_has_topics passes the info to wp_query)
https://codex.wordpress.org/Class_Reference/WP_Query
about two thirds of the way down (and it’s a long way down!) you’ll find date parameters and examples
In reply to: Blank pageSpam deleted !
are you using any caching software?
In reply to: Iām looking for Author Page Comment (bbpress)sorry, I simply don’t understand what issue you are describing, please give a more detaled explanation and a link to an example on your site
In reply to: 404 on Edit my postbbPress is tested with wordpress default themes. It maybe a conflict – you need to check plugins and themes
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.
In reply to: Cannot access abc/forumssorry I’ve read this twice, and I do appreciate that you’ve tried to give us lots of good info (unlike many posters!), but I don’t know what your actual issue is.
Can you describe in one sentence what is/is not happening and what you would expect.
In reply to: New to bbPresslook at the step by step guides in the documentation
I want the forum menu link to be visible but nothing else, no forum titles/topics etc simply a login panel and a message explaining that the forum is for members only.
ok, put the following in your functions file
//Stop non-logged in user seeing the forums and show forum login page instead
function lab_logged_in_bbptopics($have_posts){ if (!is_user_logged_in()){ header("Location: /forum-login/"); exit ; } return $have_posts; } add_filter('bbp_has_topics', 'lab_logged_in_bbptopics'); add_filter('bbp_has_forums', 'lab_logged_in_bbptopics'); add_filter('bbp_has_replies', 'lab_logged_in_bbptopics');
The create a page called ‘forum login’ and ensure the permalink is set to ‘forum-login’. You can actually use any name or permalinl, but the permalink has to match the one in line 3 above.
into that page you can put something like
You must be both registered AND a member of the club to use the forums. If you are not a member, why not <a href="/join-us/"> Join the club </a> Otherwise please login in [bbp-login]
Then create a ‘join-us’ page that they can go to.
If I disable the toolbar in this way, will I need a plugin to allow users to make basic changes to their profile in an environment that is consistent with the front end of the website?
There are several ways to get an edit profile – this one adds it to your custom menu if they are logged in
In reply to: Help – Multiple Profile TrollsI’m not a lawyer, and the law is of course different depending on where the world you are.
In reply to: Forum not showing uphow did you put the link in – are you in visual or text mode? and what exactly did you put in?
In reply to: Author Posts Position messsed upbbPress is tested with wordpress default themes. It maybe a conflict – you need to check plugins and themes
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.
In reply to: Topics not appearing in forumyes I believe it will be fixed in wordpress 4.0.1 (it was a wordpress change), but no idea when that is coming out