Forum Replies Created
-
In reply to: bbpress Role Name Change
Guten Abend,
This should explain you the way to go: https://codex.bbpress.org/custom-capabilities/
Pascal.
In reply to: error when updating to wp 4.7.2You are probably not on bbPress 2.5.12 ? Because this is a known issue of 2.5.11 with WP 4.7
Pascal.In reply to: WordPress Dashboard Showing for ParticipantsHi Diana,
To deactivate the bar for everybody, you could add in your functions.php :
add_filter('show_admin_bar', '__return_false');
If you want to hide it for all, except for administrators :
add_action(‘after_setup_theme’, ‘remove_admin_bar’); function remove_admin_bar() { if (!current_user_can(‘administrator’) && !is_admin()) { show_admin_bar(false); } }
Hope that helped.
In reply to: bbPress Unsubscribe when no longer Participant Role@brettdarnesh I’m publishing my ‘bbP Toolkit’ in v1.0.9 in some days. That one gives keymasters and moderators the right to unsubscribe users from forums and topics. Install the current version for now so you see the new one coming.
In reply to: Forum SubscribersIf you want to code it yourself, this is one of the possibilities:
$users_arr = bbp_get_forum_subscribers($forum_id); $subscriber_count = count($users_arr);
I have just added it to my ‘bbP Toolkit’ plugin, so you can find it in the next version in some days.
In reply to: Forum SubscribersHi,
That’s a great idea !
So far in standard bbPress, to my knowledge it’s not possible. But I have been working on subscribers, so let me add that to my list. I will get back to you in some days/weeks here.
Pascal.In reply to: Create New Topic buttonHi @russ8523,
I suppose you are talking about the bbp style pack plugin ? Could you post your question on the dedicated support forum for that plugin: https://wordpress.org/support/plugin/bbp-style-pack ?Thanks, Pascal.
In reply to: Problem translatingHi,
But you should not need to run anything from https://codex.bbpress.org/getting-started/bbpress-in-your-language/ . If you have a standard WordPress install, the language files are downloaded automatically.How about other plugins that have translations available, do they work ? Like SEO or something ?
In reply to: show user topic subscriptionsHi,
When you check the details of your OWN user, you should find ‘Subscriptions’ in the list. For me, if I’m logged in with USER_X then the link is : /forums/users/USER_X/subscriptions/
I can delete my forum and topics subscriptions there.
In reply to: Stop all emails from bbpressThen I’m out of ideas ! There is somewhere a plugin that is sending directly without using wp_mail or you have another process running on the server that is doing strange things 🙁
In reply to: Problem translatingOne last thing: Check that there are no translation downloads waiting here: /wp-admin/update-core.php
In reply to: Problem translatingI don’t know Loco Translate well, so try to ask on their support forum. The only thing I can say is that I have bbPress fully in English, in French and in Italian (on different sites) just by putting the whole WordPress into the correct language because bbPress is fully translated : https://translate.wordpress.org/projects/wp-plugins/bbpress
Pascal.
In reply to: Category forumsHi,
bbPress has categories, forums and subforums with topics and replies…
I don’t see where the issue is 🙂It’s not a solution, but what I did in my ‘bbP Move Topics’ was staying in the same database without exporting but correctly changing the post type and meta data.
If you are into coding, that might give you a direction. If I find some free hours this year, I might code it myself, but priority is low.
Pascal.In reply to: BBPress, Buddypress, and breadcrumbsHi,
Did you try the BuddyPress forum (https://buddypress.org/support/) ? I hope they can help you there.In reply to: MyBB to Buddpress Conversation ErrorHi,
If it’s not in production, did you try bbPress 2.6 (https://bbpress.org/download/) ?
The import possibilities are a lot better in the new version.
Pascal.In reply to: bbpress conflict with Easy Content TypesFrom what I understand, that plugin does not handle bbPress post types correctly, so hopefully they can help you (try the admin forum).
If you want (as a workaround) to remove the Oh bother message, have a look if my ‘bbP Toolkit’ plugin can help. It has an option to remove that message.
Pascal.
In reply to: URGENT notifications to all users from all topicsClosing this topic in favor of https://bbpress.org/forums/topic/stop-all-emails-from-bbpress/
In reply to: Stop Email NotificationI misunderstood that part ! Now I see what you mean, a decision for the user to make not for the admin.
Would for sure be a good future enhancement.Pascal.
In reply to: Stop all emails from bbpressIt must be a plugin somewhere that does this!
Have you tried installing a plugin like ‘Postman SMTP’ and check the logs ? In that plugin, in the advanced options there is also a way to change to TEST which (I suppose) will delete all emails before sending them out.
Keep us informed!
In reply to: Can’t tag usernames in ForumIf you are only using bbPress (so no BuddyPress) then maybe my bbP Toolkit plugin could help. It has a basic mention system.
In reply to: Admin subscribes a user to a topicCode is always welcome. And I think it’s a nice to have as option to admin and moderator.
Will try myself too 🙂
In reply to: Admin subscribes a user to a topicIn the current bbPress there is nothing by default that I know of.
For the moment my ‘bbP Manage Subscriptions’ plugin is only dealing with subscriptions to forums (I have been busy this weekend to improve it, new version should arrive soon), but let’s see if maybe later I can add something there.
In reply to: Admin subscribes a user to a topicHi @kurzbaginski,
Not without specific coding.
Just to be sure, you want that user to be subscribed to replies that will be given to a specific topic, right ?
If you want to subscribe a user to a forum so they get notified for new topics, that is a different story.
Pascal.In reply to: Problem translatingIf you switch your WordPress to Français in /wp-admin/options-general.php (Options > General), WordPress will download the French translation for bbPress automatically.
Pascal.