I have a test post with some comments on it: https://www.theecochamber.com/blog/post-number-iii/
The post has 3 replies on it, however, when you click the 'view replies' it doesn't show them and it resets number 3 to 0.
Before click
After Click
If turn off Display Parent only, it does show the comments but I would like to keep that on.
I don't see any console errors.
Any help would be much appreciated, thanks!
Hi @digitango,
Please add the fas class on that element and it'll work fine. Please see the screenshot below.
I can't just add a class there, do I need to modify the plugin?
Also, isn't this handled by fontawesome?
Please follow the steps below to get it resolved:
- Open the /wp-content/plugins/wpdiscuz/assets/js/wpdiscuz.js
- Go to 114 line
- Replace the .fas class with .svg-inline--fa one.
Don't forget to delete all caches before checking.
I see another CSS conflict. Please see the screenshot below.
To solve the issue just add the following CSS code in "Custom, CSS code" textarea, (it's located in the Dashboard > Comments > Settings > Styling admin page), save it, delete all caches and check again:
#wpcomm .wpd_label__check .fa-bell.wpdicon-on {
display: none;
color: #00b38f;
}
That did the trick, thank you!