• Sorry, made this post in another thread. Should’ve created a separate thread instead.

    Here’s the reference post.

    The content below is in reference to what you had said earlier in the thread about the positioning of the footnotes:
    I followed what you said, Jason, and up until I drop it down to 11, it shows right at the bottom of the post. If I make it anything lower than that, it doesn’t show at all. Also, agree with @rileyadamvoth. Would be hard to keep track of this when you update the plugin the next time around and it goes back to 20.

    The URL I’m testing this on:
    https://dietbros.com/ultimate-diet-guide/mediterranean-diet/

    Do let me know what I can do to bring it above the newsletter subscription box (within the main content box as there’s no margin on the left currently and it’s overlapping the social icons).

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Jason Yingling

    (@yingling017)

    Hi there, sorry for the delay getting back to you.

    It looks like on the URL there you’ve got the references showing above the newsletter signup form. Were you able to find a solution or are you still needing help?

    Thread Starter dietbros

    (@dietbros)

    I used the shortcodes solution given earlier by another user to resolve the issue. Would be great if you could implement that or give options to the users as to where to place the footnotes. I’ve to manually place it every time now.

    Plugin Author Jason Yingling

    (@yingling017)

    I’m trying to debug an issue with the easy_footnote_after_content filter being removed and re-applied to change it’s positioning within functions.php. In the meantime you could also try changing the filter priority of the newsletter similar to this code for changing the priority of Jetpack’s sharing buttons.

    add_filter('the_content', 'ef_change_position', 30);
    
    function ef_change_position( $content ) {
    	remove_filter('the_content', 'sharing_display', 19);
    	add_filter('the_content', 'sharing_display', 21);
    
    	return $content;
    }

    In this example you would need to change ‘sharing_display’ and 19 to the function applying the newsletter. Then in the add_filter you’d just be changing ‘sharing_display’ to the function for the newsletter as well.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Change Position of Footnote’ is closed to new replies.