Forum Replies Created
-
In reply to: New BBPress User
It’s getting shape !
Enjoy bbPress.
In reply to: how to change the freshness timing type?Hi,
The section is fine πYou will have to change the regular expression inside, but the basic function would look like this:
function bbptoolkitpc_shorten_freshness_time($return) { $bbptoolkit_short_fresh = get_option('bbptoolkit-short-fresh', false); if ($bbptoolkit_short_fresh) { $return = preg_replace( '/, .*[^ago]/', ' ', $return ); } return $return; } add_filter( 'bbp_get_time_since', 'bbptoolkitpc_shorten_freshness_time' ); add_filter( 'bp_core_time_since', 'bbptoolkitpc_shorten_freshness_time');
Pascal.
In reply to: Newb is Very LostHi,
It depends if you want to play yourself with CSS like this:
.bbp-topic-content p, .bbp-reply-content p { font-size: 16px; }
Or if you want Robin’s plugin that can do most of that for you : https://wordpress.org/plugins/bbp-style-pack/
Pascal.
In reply to: No Forums menu options in dashboard.Then I’m really out of ideas π
What you could do is just delete all of it and restart from scratch : https://codex.bbpress.org/getting-started/testing-your-bbpress-installation/creating-a-test-site/
There is something wrong with your local installation… I have never created a local one, but immediately went to a provider to have an account (even the very basic one). Maybe someone else has some ideas here.
Pascal.
In reply to: Help to change order of topicsHi,
If you open your welcome topic and you click on the (to front) next to the ‘stick’, does that not work ?
Pascal.
In reply to: No Forums menu options in dashboard.Hier zijn we weer.
Can you check this post and see if it helps ? https://bbpress.org/forums/topic/how-to-get-bbpress-to-work-on-a-local-wamp-installation/#post-151416
Pascal.
In reply to: Wrong date for each forum and on the date wrong linkThen I would propose to ask in that support forum (https://wordpress.org/support/plugin/bbpress-new-ui) because from the database your data seems to be correct.
In reply to: BBPress and the TruePixel Premium ThemeBut did you put the [bbp-forum-index] shortcode on that page ?
In reply to: Wrong date for each forum and on the date wrong linkT’en a pas trouvΓ© plus pour bbPress π
That first page, how did you set it up ? Is it a shortcut ?
Pascal.
In reply to: Adding username to replyHi,
You mean at the bottom of the reply, so as a last line of the text ?
Or to the left of the replies under the picture (like here)Pascal.
In reply to: Wrong date for each forum and on the date wrong linkHi Bob,
Try the ‘Recalculate last activity in each topic and forum’ option in your ‘Tools > Forums’
Pascal.
In reply to: Shorten FreshnessHi Mantelli,
That issue is coming from the toolkit, so you should use the support there: https://wordpress.org/support/plugin/bbp-toolkit(I can confirm that it only works for English, but I have to ask you to open the support case there to get the workaround)
Pascal.
In reply to: BBPress and the TruePixel Premium ThemeHi Rhonda,
Never give details in here as millions will see it when picked-up by search engines, I agree with that.
You say you created your own page for the forums. What did you put in it ? Did you put and [] shortcode ?
Pascal.
In reply to: ‘Blocked’ on blank page on loginAnd another happy customer π
Enjoy bbPress !
Pascal.In reply to: No Forums menu options in dashboard.Ha, on a local machine, have seen that before… Let me try to find it back.
There were some things to check like permissions on the folder, the site URL in your general settings and something about the local port (just from memory).
Will try to find it later. Stay tuned !
Pascal.I haven’t used preg_replace in years, but I think the 2nd parameter is what it needs to put as replacement string. You seem to tell that you want a comma : array(“,”). I suppose you want a space ? array(” “)
Didn’t try, just guessing !
Pascal.
In reply to: bbp style pack suddenly stopped taking effect???What you described seemed to me like a kind of cache issue. And I remembered the topic with Cloudflare (that I saw looking at your forum). Have a look here: https://bbpress.org/forums/topic/you-must-be-logged-in-to-reply-to-this-topic/
Maybe it serves, maybe not …
Pascal.
In reply to: No Forums menu options in dashboard.Goede middag Adri,
Can you get to this page ? (with your domain of course)
http://www.example.com/wp-admin/edit.php?post_type=forumAre you a Keymaster/administrator ?
Pascal.
Hi Andy,
1. If you just installed bbPress on top of WordPress, then your usermanagement is done by having normal users in WordPress (see the extra fields like setting the forum roles)
2. Are you using any plugins that deal with members or roles ? If you have set the ‘Settings > Forums > Auto role’ it should be sufficient. Try also to run the repair tool “Remap existing users to default forum roles”
For the forums on the frontend, have a look at this: https://bbpress.org/forums/topic/is-it-possible-to-allow-all-users-create-new-forum/
Hope it helps,
Pascal.In reply to: bbp style pack suddenly stopped taking effect???Your forum has no topics π and I do not see any black.
I’m pretty sure it’s somewhere a cache issue at one or the other level.
Are you using Cloudflare ? I have seen issues before …
Pascal.
In reply to: ‘Blocked’ on blank page on loginHi,
Most probably a security issue or a redirect to your login page that does not work. If you have any security plugins (like Theme my login) or captcha (like in Jetpack), try to deactivate. Somebody found this: https://bbpress.org/forums/topic/users-unable-to-register-and-login/
Just be careful : Editing .htaccess can block your complete site. Make sure you have a contact point with your provider and you know what you are doing
Defaults for the .htaccess can be found here: https://codex.wordpress.org/htaccess
Let me know if it helped,
Pascal.Hi Chris,
What I know is that forum moderation is being completely reviewed and improved a lot for v2.7 of bbPress. If you want to meet today those requirements, you might need a combination of plugins and custom development to get there.
And to answer your next question: No, I don’t know when 2.7 will be released. It’s all done by volunteers in their spare time.
Pascal.
In reply to: Forum Content Not Showing Up on Forum PageHi Rhonda,
Just make sure you did not create a page called ‘Forums’ at a certain moment and that would still exist (check also your trash)…
Pascal.In reply to: Change from Mingle ForumHi,
Directly under ‘Tools’, do you see ‘Forum import’ ? That is the one you need.
The direct page should be: http://www.example.com/wp-admin/tools.php?page=bbp-converter
Pascal.In reply to: Post Topic RequestHi Trent,
For bbPress: both a topic and a reply are inserted in the ‘posts’ table. The thing that mainly changes is the ‘post_type’. Then the meta data (dates, parents, …) go into the ‘post_meta’ table. So the global idea is exactely like posts, yes.
Pascal.