Forum Replies Created
-
I’ve seen this issue before but I can’t remember what it is ๐
I searched here on bbPress but nothing, a Google search does show lots of
bbPress v1.xforum sites with thiserrorbug.Do you have any other plugins or custom functions that are adjusting/using server time?
In reply to: BBPress in italianI think you need to name the files
bbpress-it.mo
andbbpress-it.po
In reply to: No Forums menu option in adminMost likely a plugin conflict with another plugin.
To try and resolve the conflict start deactivating each of your other plugins that are activated, when the bbPress menus return you know which plugin was causing the conflict.
Is that a bbPress site?
There are some docs on the codex to get you started modifying your bbPress setup
In reply to: Asking for plugin suggestions…* What are the best plugins to make bbpress mobile responsive?
bbPress included CSS is responsive, a few tweaks maybe needed if your theme is overriding these.
* I need as much facebook integration as possible, what plugins are there for bbpress?
No idea, I don’t have a Facebook account ๐
Have a look in the WP Plugins repo https://wordpress.org/plugins/search.php?q=bbpress+facebook
* Is there any @mention/quote functions that can be added to reply to people?
bbPress includes @mentions, i.e. @soprano linking to the user profile, if you want email notifications and the like add BuddyPress and enable the ‘Notifications’ component.
In reply to: Subscribe to new forum topicsIf you are using custom templates then adding
<?php bbp_forum_subscription_link(); ?>
should be all you need ๐Here is the original source depending on what templates you are using: /templates/default/bbpress/content-archive-forum.php#L26
and/or
/templates/default/bbpress/content-single-forum.php#L16This is fixed in the next release of bbPress 2.5.4 and/or 2.6
See https://bbpress.trac.wordpress.org/ticket/2518 for more details and a patch/fix if you want to implement it.
In reply to: List of moderators?In reply to: Notice report with bbpressThis is a known issue, please see bbPress#2412 and we need to wait for the issue to be fixed upstream WordPress Core per WP#24169
We also have a page with a few of the ideas we like that extent bbPress in different ways:
In reply to: Subscribe to new forum topicsCircled in red with Twenty Eleven theme and ignore those awesome forum stats!
In reply to: Change of date for freshnessIn reply to: Translate to SwedishYou want to use the
/dev
branch of both projects:https://translate.wordpress.org/projects/bbpress/dev/sv/default
https://translate.wordpress.org/projects/buddypress/dev/sv/defaultOn each of the above pages select ‘.mo’ from the dropdown at the bottom of the page and click export.
Rename each file to
buddypress-sv.mo
&bbpress-sv.mo
The extra instructions on the BuddyPress site might also help, I’ll try to get the bbPress updated soon also.
In reply to: Integrating with ZendeskI haven’t seen any integration with Zendesk but checkout this awesome tutorial by @mordauk (@pippinsplugins)
http://code.tutsplus.com/tutorials/using-bbpress-as-a-support-forum–wp-28877
In reply to: Replies under selected Posts in a TopicYou would need to make some custom templates
See https://codex.bbpress.org/theme-compatibility/
And there are a few other docs here https://codex.bbpress.org/
In reply to: Translate to SwedishSee this https://codex.bbpress.org/bbpress-in-your-language/
It’s the same process for both bbPress & BuddyPress
In reply to: Importing from VanillaThere is a broad outline here: https://codex.bbpress.org/import-forums/
Some more Vanilla specif info here: https://codex.bbpress.org/import-forums/vanilla/
Essentially you should be able to open up your Vanilla Config file in a text editor:
eg.
/public_html/dev/vanilla/conf/config.php
`
// Database
$Configuration[‘Database’][‘Name’] = ‘ntwb_vanilla2’;
$Configuration[‘Database’][‘Host’] = ‘localhost’;
$Configuration[‘Database’][‘User’] = ‘ntwb_wpdev’;
$Configuration[‘Database’][‘Password’] = ‘abc123’;
`Use the values you have in the bbPress importer screen.
To get the table prefix you might have to open phpMyAdmin on your hosting providers control panel (cPanel)
In this image my table names have a
gdn_
prefix, this is what you would use.I am pretty sure
gdn_
is the default and used by most installs.In reply to: WP_Query post type topic helpAre you only to show the avatar? (i.e. Not their, role or title etc)
This should work to display only the current topic author userโs avatar without their display name or user role and with an avatar size 60px.
<?php bbp_topic_author_link( array( 'show_role' => false, 'type' => 'avatar', 'size' => 60 ) ); ?>
In reply to: bbPress – Twenty Fourteen – iPhone viewThis is a known issue, we should have a fix in either the next bbPress release or WordPress 3.9
https://bbpress.trac.wordpress.org/ticket/2504
https://core.trac.wordpress.org/ticket/27031In reply to: WP_Query post type topic helpCheckout the docs here ๐ https://codex.bbpress.org/bbp_topic_author_link/
In reply to: Edit topic reply, changes post order@kris35 wrote… There are 68 replies to replies and 68 of them are locked this way
This shouldn’t be an issue unless
edit_lock
has incorrect timestamps.@kris35 wrote… I had to go into the backend and edit the โReply Toโ box to zero.
We have just done some testing trying to reproduce “Incorrect Reply To’s” but couldn’t.
Setting them to
0
will force the replies to be ‘Not Threaded’ and sorted by date (default)@shanebp wrote… …any edit to a reply pushes it to the bottom and destroys the threading. Any threaded replies become โflatโ.
I can’t reproduce this, any edit I make to a ‘threaded reply’ in the frontend or backend keeps the correct ‘replyto’ value and works as expected.
Thanks @iambob
In reply to: Edit topic reply, changes post orderOne of my test sites is now the same as everyone else’s in this thread ๐Will go some analysis of what I just did to make this happen and all of the components involved.
Fingers crossed I’ll find something quickly and we can get this fixed soon ๐
Edit: False alarm, it’s isnt actually doing it, different bug, but still investigating all the same.
In reply to: Edit topic reply, changes post order@kris35 wroite...
I changed them from being forums of a parent forum into being forums with no parent. I made them stand alone forums and those are the ones Im having trouble with.I just tried this.
From:
- Parent Forum -- Child Forum
To:
- Parent Forum - Child Forum
Everything still works for me as expected. (i.e. It did not force the bug in this thread) ๐
In reply to: Edit topic reply, changes post order@shanebp wrote:
Another issue:
If you turn off threaded replies, the โreplyโ link still appears on the right side for each reply. If you click it, it reloads the whole page!
If you turn off threaded replies, the โreplyโ link should be removed.
This is pretty much covered in (I think) https://bbpress.trac.wordpress.org/ticket/2509