アプリから標準的なLivefyre Appコンポーネントを削除します。
CSSを使用して、初期設定のLivefyre Appエレメントをページに表示しないようにします。これにより、ニーズに合わせてユーザーエクスペリエンスをカスタマイズできます。
アプリから要素を非表示にするには、displayをnoneに設定します。
例:
/* Hide the 'reply' button */
.fyre-comment-reply {
display: none !important;
}
/* Hide all user avatars */
.fyre-comment-user .fyre-mention-item-avatar .fyre-listener-avatars .fyre-avatar fyre-user-avatar-25 {
display: none !important;
}
.fyre-comment-head .fyre-comment-body .fyre-comment-footer .fyre-comment-divider {
margin-left: 0;
}
/* Hide 'Edit Profile' link */
.fyre-edit-profile-link {
display: none !important;
}
/* Hide 'Logout' link */
.fyre-logout-link {
display: none;
}
/* Hide 'Comment Notifier' */
.fyre-notifier-message {
display:none;
}