Sounds like you’re doing it correctly. The footnotes will only display on the output of the page. The editor will just display the shortcode. If you’re not getting the footnotes on the front-end of the site there could be a conflict with another plugin using the [note] shortcode.
Editor: https://monosnap.com/direct/GC4b3WtrF738IRu637sLaSgE2xOX4s
Front-end: https://monosnap.com/direct/OAS4BoDcX9t0W00oWpfJeFPQipZfdA
After using easy footnotes successfully for a few days an issue developed in that every footnote number is underscored, like _. This wasn’t happening the first few days using the plugin, and it makes the text look messy. Do you have any suggestions how to remove it?
Thank you,
Also, footnotes listed at the bottom of the pages – the arrows pointing to the footnotes are underscored as well.
Do you have a link you can share? It sounds like something from your theme or another plugin is probably styling the link.
https://genesisthelovestory.com/2018/02/14/ash-wednesday-february-14-2018/
I have very few other plugins: anti-spam, chronological posts, and Jet pack.
Thank you
Looks like your theme adds a border-bottom rule to all links. https://monosnap.com/direct/pbn3t8Jv6cUvji5OZC55UpojtQ7cNI
You can target it directly for Easy Footnote links by adding the following CSS to your Additional CSS panel in the Customizer (Appearance > Customize or Customize in your Admin Bar).
.easy-footnote a, .easy-footnote-single a {
bottom-border-width: 0px;
}
It does not recognize it. When I typed that it is giving me a ! warning: Unknown property ‘bottom-border-width’
I copied and pasted from your post.
I exited out of CSS panel without saving what I had typed. I checked the front end, there are no longer footnotes at bottom of pages but the numbers are still in the text and footnote appears when hover over it.
Oops sorry I didn’t proofread my response and mixed up my CSS rule. It should be border-bottom-width. Not bottom-border-width.
.easy-footnote a, .easy-footnote-single a {
border-bottom-width: 0px;
}
Give that a try. Sorry about that.
Thats it, works great, Thank You!