• Hi,

    I just installed Easy Footnotes and it’s working great. Except that, footnotes are now appearing on my homepage. I have a widget to my blog on the homepage, and the blog excerpts are feeding footnotes through to the homepage. Any idea how I can hide footnotes from the homepage?

    Thanks!
    Muntzorama

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • you can try to insert in your function.php of your child theme this code:

    function rimuovi_easy_footnotes_homepage() {
    if (is_front_page()) {
    ?>
    <style type="text/css">
    .easy-footnotes-wrapper {
    display: none;
    }
    </style>
    <?php
    }
    }
    add_action('wp_head', 'rimuovi_easy_footnotes_homepage');
    • This reply was modified 3 days, 10 hours ago by erbaflor.
    • This reply was modified 3 days, 10 hours ago by erbaflor.
Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.