Forum Replies Created
-
In reply to: How to add own forum type?
Ah now it’s clear. You can check this topic that will help you out: https://bbpress.org/forums/topic/tittle/
Pascal.In reply to: I need your help.,Please consider this topic closed and see https://bbpress.org/forums/topic/how-to-know-who-seen-my-topic-or-view-my-topic/
Pascal.In reply to: Change admin’s forum role to keymasterok, glad you’re fixed !
Thanks for posting your solution,
Pascal.In reply to: how to know who seen my topic or view my topic?OK, if you have any news, get back here and let us know.
Pascal.In reply to: Replies and new forums taking forever to publishHi,
What you describe seems to me more a caching issue, as any topic/reply should be there immediately if you don’t have any approval process. Try to see if you have any plugins or anything in your environment that would cache and deactivate it.
Pascal.In reply to: Content does not appear on TopicI suppose you see the content when you go on the back-end ?
If so then it might be a theme problem. Switch to a standard theme and see if then the contents is back.
Pascal.4.4.1 Production automatically received and installed. Let’s hope no new issues arise !
Pascal.In reply to: How to add own forum type?Hi,
bbPress works with Categories and Forums for the main structure, could you maybe explain what you plan to obtain ? Because you could easily create a structure of Category>Category>Forums.
I did not check how easy it is to have implement it, but if you really want this, check how to add a WordPress custom type, that will be your starting point.
Pascal.In reply to: Content does not appear on TopicHi,
I see 2 topics, so bbPress should be working fine.
Are you sure you don’t somewhere have a plugin that would put the topics waiting for approval or something ?
Pascal.In reply to: Formatting gone wrongHi,
If the theme upgrade caused this, then you better check on the support forum of the theme and for now revert back to the previous version.
Just to be sure: you never adapted any of the files in the theme to make bbPress work differently ?
Pascal.In reply to: No content or access to edit top level “Forums” pageGreat news, happy you’re solved !
Pascal.Hi,
Sorry it took me some time, but this hopefully works. Just add in a functions.php or so.
Will add it in next version of my bbP Toolkit …function casiepa_change_admin_links_sep($args) { $args['sep'] = ''; return $args; } add_filter('bbp_after_get_topic_admin_links_parse_args', 'casiepa_change_admin_links_sep' ); add_filter('bbp_after_get_reply_admin_links_parse_args', 'casiepa_change_admin_links_sep' );
Pascal.
In reply to: BBPress Doesn’t display on WP 4.4ok, great news, thanks.
In reply to: Forum root not showingIt should be sufficient to create a page at that permalink and add the [bbp-forum-index] shortcode in it.
Pascal.
In reply to: how to know who seen my topic or view my topic?Hi,
That would be a question to ask in the support channel of that plugin.
As developer I would indeed not consider to increase the counter if the same user would view it in a certain period of time. So if I’m logged in as casiepa into bbPress and I view a topic and hit 10 times the refresh of my browser, I don’t want to increase the view counter with 10. Only after e.g. 15 minutes it should be considered an extra view. But that’s my personal interpretation.
Pascal.Hi,
To get you started, check point 8 on https://codex.bbpress.org/step-by-step-guide-to-setting-up-a-bbpress-forum/#8-make-sure-bbpress-uses-the-page-template-we-wantHope it serves,
Pascal.In reply to: Anon posting for REGISTERED usersHi,
I suppose the topic would be
I don’t think a plugin exists for that. The way to go for a plugin developer could be to change the owner of the reply to a predefined user after saving it to the DB.
Pascal.In reply to: BBPress Doesn’t display on WP 4.4Hi,
I can confirm that tens of thousands of us are already on WP 4.4 and it works fine (except for a small issue with hidden/private forums.
You issue is probably related to a theme or plugin that is not working fine. Please switch to a standard theme in WP 4.4 and deactivate all plugins. Then activate them one after the other (bbPress first of course) to see where the issue would be.
Pascal.Probably something with this function so adding [Delete] or a button after every topic title
// define the bbp_template_after_topic_tag_edit callback function casiepa_bbp_template_after_topic_tag_edit( ) { echo ' <a href="">[Delete]</a>'; }; // add the action add_action( 'bbp_theme_after_topic_title', 'casiepa_bbp_template_after_topic_tag_edit', 10, 0 );
Or maybe better only when they open the topic itself ?
But as said I’ll have another look in the next days.
Pascal.Interesting … Give me some days and let me think of that …
Deleting own or others posts is the same is this case as the user is not logged in.
Pascal.In reply to: Duplicate Forums and TopicsSo something is creating an extra one. You will have to test:
– Switch to a standard theme and try inserting a topic
– Stop all plugins except bbPress (stay on the standard theme), insert a topic, then start reactivating one plugin after another and everytime insert a topic.Pascal.
In reply to: Understand forums structureAhhh, correct, not supported on MU yet, sorry. Check later for the plugin if you’re interested.
For now use the CSS.Pascal.
In reply to: Duplicate Forums and TopicsHi,
If as admin you check the topics in the backend, do you confirm you see 2 topics or only 1?
I’m asking just to understand if it is a display issue or if really a 2nd topic gets created.Is your site public ? If so, please also give the URL.
Pascal.In reply to: how to know who seen my topic or view my topic?OK, well, talking pure bbPress, there is no option that I know off. And knowing the standard database structure a bit, I don’t think anything is kept as an audit trail.
Try to look into plugins, e.g. to COUNT the views : https://bbpress.org/forums/topic/new-feature-viewhit-counts/ as that seems to be the only way to go.
Pascal.
In reply to: how to know who seen my topic or view my topic?Hi,
You talk about ‘group forum’, so I suppose you have buddyPress ? Then it might be better to ask on their forum.
Pascal.