I can't find the provided Disqus comments block (one that displays the comment form and then lists any existing comments for that node - like the field formatter does). I have a disqus field for my content type, rendering the field works just fine.
The project description only mentions:
Alternatively disqus comments can be used on Blocks. You will first need to configure the disqus comment field for any entity sub-type.
That's not too clear and I see no options that would appear to enable block functionality. Any further pointers? Thanks!
Drupal 8.5.3.
Comments
Comment #2
alexgreyhead commentedI appreciate this help request is ~18 months old but, in case it helps, it seems that there probably isn't a separate comments block - at least not one I can find in the code.
The only way to add Disqus comments to a node or other entity at this time is to add the Disqus field.
Hopefully this helps someone :)
/Al
Comment #3
noah commentedIn case anyone needs it in a block, the functionality is achievable with Views (to the extent that I'm not really sure the module even needs to provide its own block, but there may be other factors involved that I'm not aware of). This worked for me:
This should provide a block that shows only the comments field from the current node. Note that you can probably skip the "View mode" stuff and have the view show "Fields" and select the Disqus field—I haven't tried that, but I can't think of a reason it wouldn't work.
Comment #4
gaurav.kapoor commentedThe suggestion provided in #3 is the workaround for now.