bbp Style Pack

説明

このプラグインを使用すると、bbPress のスタイルを設定し、表示機能を追加できます

要素のフォーラムのスタイルを変更して、bbPress をテーマに一致させる (または対照させる) ことができます。

ボタンをクリックするだけで、垂直リストの作成、新しいトピックの作成リンクの追加、カウントの非表示など、多くの機能を利用できます。

  • フォーラムやトピックでフォント サイズ、色などのスタイルを設定する
  • フォーラムの表示レイアウトを変更する
  • 説明の追加や「このフォーラムには次の内容が含まれています」の削除など、フォーラム要素を追加または削除します。
  • フォーラムの順序を変更する
  • 鮮度表示を日付と時刻、または日付と鮮度の組み合わせに変更します
  • パンくずリストを変更して要素を変更または削除するか、パンくずリストを完全に削除します
  • 「新しいトピックの作成」、「購読」、「プロフィール」ボタンを追加し、ナビゲーションを簡単にします
  • ログイン登録とプロフィールをメニューに追加
  • フォーラムのユーザー権限名を変更するか、ユーザー権限のイメージを追加します
  • 購読メールの見出しとテキストを修正する
  • トピックリストの順序を修正する
  • トピックのプレビューを追加してトピックのナビゲーションを簡単にします
  • トピックと返信フォームの表示方法を変更する – 要素を追加、削除、変更する
  • プロフィールの表示方法を修正し、プロフィールを閲覧するユーザーを設定する
  • 検索スタイルを修正する
  • 追加のショートコードを使用して、フォーラムとトピックの表示方法を改善します
  • ユーザーが新しいトピックや返信を簡単に確認できるように、未読の投稿セクションを追加します。
  • トピックと返信に引用ボタンを追加する
  • を制御できるようにするためのモデレーション ツールを追加します
  • ユーザーが新しいトピックや返信を簡単に確認できるように、未読の投稿セクションを追加します。
  • 追加のウィジェットを使用して、最新のアクティビティやフォーラムやトピックの情報をより適切に表示します
  • 他の便利な bbPress 関連プラグインのリストを見つける
  • Let bbpress work with FSE themes

スクリーンショット

  • サンプル設定ページ

インストール

本プラグインのインストール:

  1. 「ダッシュボード > プラグイン > 新規追加」に移動します
  2. 「bbp スタイルパック」で検索
  3. クリックして、インストール
  4. そしてアクティブ化します
  5. 設定に移動し、必要に応じてセットアップします。

設定

評価

2024年12月8日 2 replies
First of all, this plugin is great and very useful. Thank you for your work!I would like to report a bug. In the Unread Posts tab, for the 6th option, Opt-in or Opt-out options, I selected the Allow users to opt-in option. However, I noticed that the “Mark all topics as read” button still appears on the page for users who have not chosen to enable the “Display unread icons” feature or for users who are not logged in. I believe this is a bug because this button is meaningless for those users. I also saw that the code for this feature is no longer maintained, but I would really appreciate it if you could fix this bug. I tried custom the function code but it didn’t work… function bsp_add_unread_actions () {    global $bsp_style_settings_unread ;    if (!is_user_logged_in()) return;    $user = wp_get_current_user();    $user_id = $user->ID;    $optinout = (!empty(get_user_meta($user_id, ‘bsp_unread_optinout’, true)) ? get_user_meta($user_id, ‘bsp_unread_optinout’, true) : ”);    $show_unread = false;    if ($bsp_style_settings_unread[’optinout’] == 1) {        $show_unread = true;    }    elseif ($bsp_style_settings_unread[’optinout’] == 2 && $optinout == 1) {        $show_unread = true;    }    elseif ($bsp_style_settings_unread[’optinout’] == 3 && $optinout != 2) {        $show_unread = true;    }    if ($show_unread) {        add_action(“bbp_theme_before_topic_title”, “bsp_ur_icon_wrapper_begin”);        add_action(“bbp_template_after_single_topic”, “bsp_ur_on_topic_visit”);        add_action(‘bbp_theme_before_forum_title’, ‘bsp_unread_forum_icons’);        add_action(‘bbp_template_before_single_forum’, ‘bsp_test_mark_as_read’);    }}
2024年4月5日
this plugin is a Swiss army knife and its author is extremely helpful and responsive, thank him!
100件のレビューをすべて表示

貢献者と開発者

bbp Style Pack はオープンソースソフトウェアです。以下の人々がこのプラグインに貢献しています。

貢献者

“bbp Style Pack” は2ロケールに翻訳されています。 翻訳者のみなさん、翻訳へのご協力ありがとうございます。

“bbp Style Pack” をあなたの言語に翻訳しましょう。

開発に興味がありますか ?

コードを閲覧するか、SVN リポジトリをチェックするか、開発ログRSS で購読してみてください。

変更履歴

6.3.9

*minor (but annoying!) bug fix !!

6.3.7/6.3.8

*a correction to forum lists widget division which was not closed correctly
*bbpress has a bug where the discussion disallowed comment keys set in dashboard>settings> discussion do not work – I’ve have added a fix for this which is active by default, which can be taken out in the style pack bug fixes tab

6.3.6

*a minor change to unread posts

6.3.5

*a fix for an error thrown in some cases if using private sub forums

6.3.4

*Fix for latest activity block widget not showing author

6.3.2/6.3.3

*Correction to how blocks are handled in admin to make them work correctly following WP 6.8 release

6.3.1

*Correction to forum information block to correctly show last activity

6.3.0

*On display of the forum/topic/reply admin pages an automatic author filter was being added. This could slow display of these pages on sites with thousands of users, so I have made this an option in dashboard>settings>bbp-style-pack>Dashboard Admin

6.2.9

*amended css enqueing so that blank css files are not downloaded

6.2.8

*further bug fix for 6.2.6

6.2.7

*bug fix for 6.2.6

6.2.6

*I’ve added the ability to list tags on the topics dashboard page – see dashboard>settings>bbp-style-pack>Dashboard Admin

6.2.5

*I’ve corrected an error for those wanting to use the bbpress profile in the WordPress Admin Bar.
*Technical change – I’ve changed some lookup functions to not use ‘abspath’ in bbp-style-pack.php

6.2.4

*Fix for settings topics fields error

6.2.3

*Fix for not displaying ‘mark all topics as read’ button if users have opted out
*Fix for incorrect shortcode for displaying unread topics

6.2.2

*minor fix for a bug in 6.2.1 !

6.2.1

*Some further technical changes which will help bring this plugin up to date with all the latest WordPress coding standards and PHP changes

6.2.0

*Some further technical changes which will help bring this plugin up to date with all the latest WordPress coding standards and PHP changes

6.1.8/6.1.9

*Some further technical changes which will help bring this plugin up to date with all the latest WordPress coding standards and PHP changes

6.1.7

*fix issue with reply titles in subscription emails
*fix deprecated cache clearing function for WT3C
*Some further technical changes which will help bring this plugin up to date with all the latest WordPress coding standards and PHP changes

6.1.6

*fix issue for bock themes not displaying all templates in dashboard>themes>customise
*fix issue for shortcodes not working in block theme footers – I’ve added an additional option in theme set-up to allow this.

6.1.5

*correct issue for Astra theme

6.1.4

  • Further improvements for issues with translations following WP 6.7 release.
  • I’ve added an additional shortcode is you are using unread posts, which lets you have say a page showing all unread posts.
  • Some further technical changes which will help bring this plugin up to date with all the latest WordPress coding standards and PHP changes

6.1.3

  • Change to getting bbpress version in bbp-style-pack.php as old method is causing issues with translations following WP 6.7 release.
  • fix to error in unread functions ‘Attempt to read property “ID” on null’
  • fix to forums and topic index icons in version 6.1.2

6.1.2

  • The second of several technical releases which will help bring this plugin up to date with all the latest WordPress coding standards and PHP changes

6.1.1

  • The first of several technical releases which will help bring this plugin up to date with all the latest WordPress coding standards and PHP changes

6.0.9/6.1.0

  • Fixed a bug if trim revisions was not numeric in bsp_trim_revision_log
  • Fixed a css bug for topic/reply display font size

6.0.8

  • I’ve added the ability to change the ‘from name’ on subscription emails. See Subscription Emails tab item 1.

6.0.7

  • I’ve added the ability to customise the ‘create new reply’ button with forum or topic name. See ‘Topic/Reply Display’ tab item 25.

6.0.6

  • Following release of bbPress 2.6.11 a modification is needed for those using the [bsp-moderation-pending] shortcode.

6.0.5

  • I’ve fixed a small bug in the 6.0.4 realted to the new topic fields functionality.

6.0.4

  • I’ve added the ability to control what additional fields are shown/required for anonymous posting on the topic/reply forms – See the new ‘Topic/Reply form’ tab.
  • I’ve fixed a small bug in the 6.0.3 release

6.0.3

  • I’ve added a new tab, which lets you add additional fields to the topic form, for instance you can ask for ‘Make of car’ on a car restoration forum – See the new ‘Topic Additional Fields’ tab.
  • If you post a new topic using the form at the bottom of the topics list and do not complete the required fields, you can be sent to the top of the form without your topic being posted, and with no visible reason. I’ve added a bug fix which displays these errors at the top of the topics list. You can exclude this fix in settings>bug fixes if you wish, but if you find issues with it, I’d like to know, so please also post a support thread.

6.0.2

  • I’ve added a new tab, which lets you decide which columns to show on the forum and topics index pages, and do this differently for mobile if you wish. See the new ‘Column Display’ tab.

6.0.1

  • I’ve added the abilty to bulk move topics between forums in dashboard>topics. Use the bulk edit feature and you can set the forum against multiple topics