Forum Replies Created
-
In reply to: Shortcode on the page php
Great – glad you’re fixed !!
In reply to: [Help] User can be close topicsyou won’t be changing subscriber – that is a wordpress role – bbpress has it’s own roles, and probably that is participant.
I’m sure you can , but haven’t tried so don’t have code offhand.
Suggest you just create a new custom role, and then set your bbpress user to it.
In reply to: Shortcode on the page phpok, well without spending hours recreating your issue, I’d suggest you try
<?php $idbbp = get_post_meta($post->ID, 'idbbp', true); $forum_id = bbpress()->current_forum_id = $idbbp; $x='[bbp-single-forum id forum id ="'.$forum_id.'"]‘ ; echo do_shortcode( $x);
In reply to: Plugin Search Block CommentsI think you found a topic on an issue – since it didn’t fix it, suggest it is not relevant.
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.
In reply to: [Help] User can be close topicssee
https://codex.bbpress.org/bbpress-user-roles-and-capabilities/
and you’ll see a capability for a user to close their own topics.
you need to either amend the participant role, or create a new role with this capability
In reply to: Plugin Search Block CommentsIf it’s just a ‘Read this before you post’, then just create the topic, and then in
dashboard>topics>all topics and edit the topic you want, then under topic attributes on the right hand side, change from open to closed.
If you make this a ‘super sticky ‘ under types in the same box, you only need create this topic once, and it will appear at the start of every forum.
In reply to: Shortcode on the page phpsorry but what is the ‘page comment form ‘, where on ‘each page’ are you putting the code, and what is ‘each page’
I am trying to hep you, but you do need to do a detailed response so that I can help.
For instance
” I go into dashboard and select forums and then edit the xx forum and change the content from … to….”
or
‘I edit the page.php file and in line xxx I add YYY’
In reply to: Questions about bbPress…Can it be installed on a club website for “members only” to view the whole bbPress section?
• Can you set up different forums to be only accessed/viewable to certain members?https://wordpress.org/plugins/bbp-private-groups/
• Can it host pictures?
Usually people use
i have created custom role’s (parent and teacher)
How have you done this – using a plugin or by coding?
set dynamic role for bbpress forum itself
In reply to: Use the WordPress avatarYou’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?