• Resolved pault34

    (@pauljt007)


    Hi.

    I’ve just started using this plugin and I’m finding that the hover footnote is great and have the level of impact I need for displaying references, however the footnotes at teh bottom are not working with my page layout. Is there a way I can turn off teh footnotes at the bottom?

    Thank you.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Strangely logged in just now to make this SAME request — which is a checkbox for “Hover Only. Do not display footnotes at page bottom”…

    I temporarily fixed this in CSS by adding display:none to the class, but feels like it’s a useful feature in general!

    Plugin Author Jason Yingling

    (@yingling017)

    Hi there,

    That’s definitely a feature I’ve got on the queue for a future update. Thanks for the feedback.

    You can remove the footnote list after the content by adding the following code to your theme’s functions.php file.

    global $easyFootnotes;
    remove_filter('the_content', array( $easyFootnotes, 'easy_footnote_after_content'), 20);

    You can also hide it through CSS in the Appearance > Customizer > Additional CSS panel with:

    .easy-footnotes-wrapper {
        display: none;
    }

    Let me know if you have any issues implementing either of those fixes.

    Thread Starter pault34

    (@pauljt007)

    Thank you Jason.

    The CCS addition to the theme customizer works a treat.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Hovering the footnote only’ is closed to new replies.