こんにちは!
このセクションに新しいリンクを追加することは可能ですか?
「preference」と「notifications」の間です。テーマを編集するか、新しいプラグインを追加することで可能です。
よろしくお願いします!
こんにちは!
このセクションに新しいリンクを追加することは可能ですか?
「preference」と「notifications」の間です。テーマを編集するか、新しいプラグインを追加することで可能です。
よろしくお願いします!
こんにちは!おかえりなさい。 ![]()
ログアウトボタンの前にアイテムを挿入できる addQuickAccessProfileItem というAPI関数があります。
例:
<script type="text/discourse-plugin" version="0.8">
api.addQuickAccessProfileItem({
icon: "pencil-alt",
href: "/somewhere",
content: "Test"
})
</script>
次に、CSSを使用してアイテムを並べ替えることができます(理想的ではありませんが、他に選択肢はあまりありません)。
.user-menu {
.summary { order: 1 }
.activity { order: 2 }
.invites { order: 3 }
.drafts { order: 4 }
.preferences { order: 5 }
/* yours here */
.test { order: 6 }
.do-not-disturb { order: 7 }
.logout { order: 8 }
}
お役に立てば幸いです。 ![]()
どうもありがとうございます!
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.