danirus / django-comments-xtd

A pluggable Django comments application with thread support, follow-up notifications, mail confirmation, like/dislike flags, moderation, a ReactJS plugin and Bootstrap 5.3.
https://django-comments-xtd.readthedocs.io
BSD 2-Clause "Simplified" License
594 stars 158 forks source link

only signed in can comment #208

Closed ogurec-ogurec closed 4 years ago

ogurec-ogurec commented 4 years ago

Faced a small problem, is it possible to somehow make it so that only users can comment, but at the same time the "Reply" button and the "Like / Dislike" buttons were displayed, and when they clicked on which, they were also sent to the authorization page ? (according to this logic, the "Flag" button is displayed).

Currently, only the flag is displayed, and changes to the settings do not affect the rendering of the form. (like / dislike, reply buttons are not shown, even when the show_feedback setting is enabled)

Maybe someone came across?

My settings:

'allow_flagging': True,
'allow_feedback': True,
'show_feedback': True,
'who_can_post': 'users'
danirus commented 4 years ago

Hi @ogurec-ogurec, sorry for the late reply. The interface displayed by the JavaScript plugin should be the same as the backend, when this feature is enabled. I consider it a bug, I will fix it and release it in the v2.7.2. Thanks for the report!

danirus commented 4 years ago

The issue has been fixed and will be release with v2.7.2.

ogurec-ogurec commented 4 years ago

thanks!