-
|
Hello Daniela and everyone, Is it possible to move the "Post your comment" form to the end of the comments tree in the current version of the JavaScript plugin? I've read some related posts like #376 and #321, but haven't found the solution. Could you please let me know if the rough customization I mentioned is currently available for the JavaScript plugin? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
|
Hi @kuzned, yes, it is possible. In the Take a look at the scripts provided by the Happy coding! |
Beta Was this translation helpful? Give feedback.

Hi @kuzned, yes, it is possible. In the
django_comments_xtd/static/django_comments_xtd/js/srcdirectory you can find the sources. The filecommentbox.jsxput all the components together. Scroll to the bottom and within the JSX code that is returned you see the different components. To remove the comment counter simply remove the<CommentCounter />entry. In the modulecommentform.jsxyou will find the entryPost your comment.Take a look at the scripts provided by the
package.jsonfile. I recommend you to install NodeJS with nvm. Then use a stable version of NodeJSnvm use stable. After that you can use any of the scripts of thepackage.json. Mainlycompileorwatchduring development. Wh…