Great plugin. I only have one minor issue. I have installed the plugin on the Soledad WordPress theme. When I post comments using bullets (ul) or ordered lists (li), neither shows bullets or numbers. The items are indented and listed on separate lines.
Also, there was no formatting for quotes within the comments, but I was able to fix that by adding some css.
Please leave some example URL to allow us to check the issue.Â
In case you want to say thank you! 🙂 We'd really appreciate if you leave a good review on the plugin page. This is the best way to say thank you to this project and the support team.
This is a CSS conflict with the active theme. It adds list-style: none; CSS rule for all li elements.
To solve the issue use the CSS code below:
#wpdcom ol li { list-style-type: decimal !important; } #wpdcom ul li { list-style-type: disc !important; }
Put the code in the Top Admin Bar > Customize > Additional CSS > "Additional CSS" textarea, save it, delete all caches and check again.Â
In case you want to say thank you! 🙂 We'd really appreciate if you leave a good review on the plugin page. This is the best way to say thank you to this project and the support team.