Forum Replies Created
-
You have somewhere entered in the wordpress or bbPress settings a ‘/index.php’ that should not be there according to me !
Pascal.Hi,
What plugins are you using concerning user roles or for bbPress ? I know of at least 1 bbPress plugin that has issues with the new WP 4.4
Pascal.In reply to: no spacing in posts@Robkk, I suppose FliP0x meant, for the clarity of the question, that where he has put dots here, he actually put new lines in the forum. These somewhere get lost when saving to the DB or displaying them again afterwards.
According to me it’s a plugin that works on the text or a theme issue…
Pascal.In reply to: Forum list as phpbb – DesignHi,
I remember that people found this one a very nice child theme that was going towards phpBB : http://www.epicwebs.co.uk/bbpress-tutorials/bbpress-starter-theme/
Have a look if it can help, otherwise just get back here.
Pascal.In reply to: Post CountsOK, as you have avada, could it be the same like here: https://bbpress.org/forums/topic/post-count-incorrect-repair-tools-dont-fix-the-problem/ ?
In reply to: Migrating from another platformHi,
Some questions to you:
– You have 2900 replies, how do you know to what topic they relate to ?
– If you have 1400 topics and e.g. 5 forums, how do you know to what forum a topic belongs ?
– To show some stats, how do you know when a topic or forum was last changed ?
=> All answers are the same: It’s coming from the meta data of the posts. So this data really needs to be filled.Please refer to the bbpress codex for custom imports (https://codex.bbpress.org/getting-started/importing-data/import-forums/custom-import/).
I think you will find what you need overthere, if not, give us a shout here again !Pascal.
In reply to: Post CountsNo no, you are in ‘Settings > Forums’, please go to ‘Tools > Forums’ !
Pascal.In reply to: Post CountsHi,
From you administration panel, did you try to go to ‘Tools > Forums > Repair Forums’ and run some recalculation and count jobs there ?
Pascal.In reply to: Remove max file upload size noticeHad a quick look and it’s using standard div naming, so I looked at how I did it in one of my plugins. The below css should hide the message, but not only that one as also these ones will be gone:
– Oh bother! No topics were found here!
– You must be logged in to create new topics
– Your account has the ability to post unrestricted HTML content.bbp-template-notice { display: none; } .bbp-template-notice.info, .bbp-template-notice.error, .bbp-template-notice.important, .bbp-template-notice.warning { display: block; }
Hope you can decide…
Pascal.In reply to: BBcode broken since wordpress 4.4 updatedHi,
Are you using any specific plugins ?
If it’s a public site, please indicate the URL so we can have a look.
THanks, Pascal.In reply to: Remove max file upload size noticeHi,
I have downloaded it and will check it later. I just needed to know what you used to find the correct CSS.
Pascal.In reply to: Remove max file upload size noticeHi,
What plugin are you using for the attachments ?
EDIT: Found this back, so I suppose you still use the same ? (https://bbpress.org/forums/topic/gd-bbpress-attachments-file-size-issue/)
Pascal.In reply to: Last visitHi,
Somewhere you will first have to add a timestamp for a user into the DB …
I found this plugin, not sure if it can help you: https://wordpress.org/plugins/user-last-visit/
Pascal.In reply to: Can you over-use a repair tool in bbress?Hi,
The recalculation is not breaking anything, so you can run it every 5 minutes if you want. The only thing is the performance: It scans some tables in the database so if you have a very busy forum, the moment you run the query, it might have a slight impact on performance.So only run the repair query that is really needed whenever it’s needed.
Pascal.
In reply to: move Forum Subscribe link/button to rightHi,
1. Just read item 17 on https://codex.bbpress.org/layout-and-functionality-examples-you-can-use/ . Or use a plugin like ‘bbP Toolkit’ or other to do it for you.
2. hmmm, I see a complicated way in programming this, but maybe somebody comes with an easy solution
Pascal.In reply to: My group forums suddenly disappearedHi,
I suppose you use Buddy Press ? Did you try to repair in Tools > Forum and then ‘Repair BuddyPress Group Forum relationships’ ?
Pascal.In reply to: Bug with bbp style packHi Jason,
If you experience a bug with a plugin, you better ask on the support page of that plugin directly (in this case https://wordpress.org/support/plugin/bbp-style-pack)
Pascal.In reply to: vBulletin 3.8 > bbpress = dashesIf reduced speed is the only topic of concern during an import, then I would say there are no concerns at all 🙂
Improving speed is something that is already ongoing for years (see e.g. https://bbpress.trac.wordpress.org/ticket/1925) and will probably never end, but that’s positive in this case.Let’s just hope the import ends correctly, whatever time it might take.
Pascal.
In reply to: Need Migration HelpIf you are looking for paid help, you can always try to post it on http://jobs.wordpress.net/
Pascal.In reply to: How to keep members in their own forum?Yes, bbP Private Groups is also my preferred option for this kind of setup !
pascal.Hi,
This is in most cases a plugin that is giving the issue. E.g. you have google analytics or Yoast SEO running ?
Try deactivating all plugins except bbPress and try then, if it works switch them back on one by one to see which one is causing the issue. (for some people it worked just by stopping and starting plugins)
Pascal.In reply to: How to remove title prefixes ‘Topic:’ & ‘Forum:’ ?@Robkk
Thanks, I just wanted to point out the filter, but as always your example is much more to the point !
Pascal.In reply to: Demo of bbPress ?Hi,
You can find examples on this page: https://bbpress.org/about/examples/
Pascal.In reply to: How to remove title prefixes ‘Topic:’ & ‘Forum:’ ?Hi,
You will have to look for the bbp_before_title_parse_args filter. Just an example below, but it will need tuning probably:function bbppc_format_titles( $new_title ){ // Format to title only $new_title['format'] = '%s'; return $new_title; } add_filter( 'bbp_before_title_parse_args', 'bbppc_format_titles' );
Pascal.
In reply to: You do not have permission to replyHi,
You are not using Google Analytics by Yoast are you, because it seems to have had that bug.
And any plugins that deal with roles or change capabilities of users ?
Pascal.