Forum Replies Created
-
In reply to: Into the menu can not be added forums
Great – glad you’re fixed !
In reply to: Close Thread after “x” days with option to Re-Open?Typically mods/admins close a topic to prevent more replies, but is users can simply re-open it, then it sort of defeats why it was written, so suspect you’d struggle to find anyone who has or would code this for free.
There are functions
bbp_close_topic
andbbp_open_topic
which could be hooked to a cron function to close and a reply function to reopen, but it would take a little effort to code a plugin to do this.In reply to: Sidebar issueTwo approaches
1. you are using Reden=pro which is a paid theme, so you should get paid support to fix this, quite often it is very simple, but it is theme dependant
2. see this link on getting wordpress to use the template you want
Do you want all new topics get assigned to the same menu, or new topics assigned to different menus depending on say which forum they are created in?
In reply to: Into the menu can not be added forumsIt 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: Help customizing user titles or rolesyou could try my new plugin
In reply to: Can’t access replies pages – leads to not found 404probably a theme or plugin conflict
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: Should there be an image?ok, so if you click the image, you get to the forums.
so if the url is
http://fubar-alliance.com/commo/channel/test/
the forums work.Since you are already using the forums slug for your phpbb software, what is it set to in dashboard>settings>forums, and if you set that correctly it should all work
In reply to: Get parent forum id upon new reply submitPart 1
The form is held in
bbpress/templates/default/bbpress/form-reply.php
you’ll see several do_action hooks you could use, or indeed you could amend this template and save it in your theme as a new version.
wp-content/themes/%your-theme-name%/bbpress/form-reply.php
and bbpress will use this instead.Most of the template used in bbpress are held in
bbpress/templates/default/bbpress so hunt around in there for topic forms, profiles etc.
Part 2
` $forum_id = bbp_get_reply_forum_id($post_id);
`In reply to: taken out of forum page when clicking page 2ok, it’s not a good idea to post user access details on the website.
I took a quick look, but please DELETE my username to prevent you being spammed.
This may be either a permalinks issue, or theme or plugin
so try
Permalinks
This could be an issue with your rewrite rules. To fix this try resetting your permalinks. In your WordPress Administration Screens navigate to Settings>Permalinks, MAKE A NOTE OF WHAT IT IS SET TO, then select a different permalink structure and save. Then select your preferred permalink structure and save again.
If that doesn’t fix, Then
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: [Resolved] Topics doesn’t show upno problem – glad you’re fixed
In reply to: Forums not sending out alerts to subscribed users.In reply to: Different formatting for shortcodesif you are into coding, then download my plugin
https://wordpress.org/plugins/bbp-style-pack/
and look at
/includes/shortcodes.php
where I create a shortcode that uses a different template
You could create a new version by using that code as a base
In reply to: Enable bbPress Forum to buddypress group onlythis may help
In reply to: taken out of forum page when clicking page 2link to your site and an example please
In reply to: [Resolved] Topics doesn’t show upIn reply to: BreadcrumbsIn reply to: Before Postinggo to any of the forums eg troubleshooting, and at the end of the forum list you will see a new topic form
In reply to: [Resolved] How to change the word?thanks !
In reply to: [Resolved] forums, categories, and groupstry
https://wordpress.org/plugins/bbp-style-pack/
‘extras’ tab looks like it is close to what you want, or
[bsp-display-forum-index forum= ‘2932, 2921′ breadcrumb=’no’ search=’no’] from the shortcodes in the style pack plugin may work for you
In reply to: [Resolved] How to change the word?hmm – think it’s buddypress, but without a link can’t say for sure. Any chance of a link?
In reply to: [Resolved] How to change the word?Can you post a link to an example please
Do you still have a problem?
In reply to: Prevent participants from creating new topicsThe best way would be to create a new role, and not give it the create topic capability
see
https://codex.bbpress.org/custom-capabilities/
and give it :
// Topic caps
‘publish_topics’ => false,
‘edit_topics’ => false,
‘edit_others_topics’ => false,
‘delete_topics’ => false,
‘delete_others_topics’ => false,
‘read_private_topics’ => true,