prismtechstudios
Forum Replies Created
-
Forum: Plugins
In reply to: [Modern Footnotes] How to make bottom footnote collapsible?Hi @viveknegi1290 ,
Thanks for this feedback! There isn’t a way to do that right now, but you could work around that by:
1. Deselecting the option to show footnotes at the bottom of the page by default
2. Manually adding a [mfn_list] shortcode at the bottom of your article, wrapped in the spoiler shortcode that you demo in the video you shared.However, that would require setting up that [mfn_list] shortcode on every page.
I’ll add making these collapsible to the feature list for future development!
Best,
SeanForum: Plugins
In reply to: [Modern Footnotes] Footnotes not showing up on mobile@rajk748 Gotcha – I had previously been testing on a desktop browser resized down to a mobile size. When I tested on a phone, I see that your site is going to an /amp URL. Are you using a plugin to generate accelerated mobile pages? It is likely there is a compatibility issue between Modern Footnotes and that plugin.
Forum: Plugins
In reply to: [Modern Footnotes] Footnotes not showing up on mobileHi @rajk748 ,
Thanks for letting me know about this issue. I’ve just released a new version of the plugin that should fix it.
Best,
SeanForum: Plugins
In reply to: [Modern Footnotes] Scroll Bar In footnotesHi @jeffgmck ,
This would have to be done to custom CSS, and you could accomplish it by setting something like the following in the custom CSS field in the Modern Footnotes setting page:
.modern-footnotes-footnote__note { overflow-y: auto; max-height: 300px; }This would put a scrollbar on any toolbar taller than 300 pixels.
Best,
SeanForum: Plugins
In reply to: [Modern Footnotes] Eliminate space in superscript footnote number?@meijin2k I just remembered that you had the URL in the other support ticket. I checked that and there’s a space between the text and the code for the shortcode, so the extra space is coming from that. Are you using shortcodes like [mfn][/mfn], or the footnote menu option in the block editor?
Forum: Plugins
In reply to: [Modern Footnotes] Eliminate space in superscript footnote number?Thank you, @meijin2k ! Could you send me a URL to your site so I can take a look?
Forum: Plugins
In reply to: [Modern Footnotes] Larger Footnote NumbersHello @cmarunde ,
Modern Footnotes itself uses the theme’s styles for the footnote numbers, so this sounds like a case where we’ll need to use custom CSS to override what’s in theme. I would recommend adding a custom style like this to the field at Settings > Modern Footnotes > Modern Footnotes Custom CSS (you can change the “14px” to be bigger, if you’d like):
.modern-footnotes-footnote a { font-size: 14px !important; }Best,
SeanForum: Plugins
In reply to: [Modern Footnotes] Changing superscript number color?Your theme has some styles overriding the custom CSS that you added, so we’ll have to specify that the Modern Footnotes custom styles should take priority. Try changing:
color: red;tocolor: red !important;and see if that works.Forum: Plugins
In reply to: [Modern Footnotes] How to change title of notesHi @arutha176 ,
Thanks (as always) for the helpful note on this! I’ve added a setting now where you can change the heading level used for the footnote list. It’s under Settings > Modern Footnotes and just change the Heading tag name for footnote list setting (to Heading 4, in your case).
Best,
SeanForum: Plugins
In reply to: [Modern Footnotes] Change heading level for footnote listHi @bireb ,
I just released a new version of the plugin that has a setting where you can make this change. To change the heading level on footnote lists, go to Settings > Modern Footnotes and change the Heading tag name for footnote list setting.
Best,
SeanForum: Plugins
In reply to: [Modern Footnotes] Changing superscript number color?Hi @meijin2k ,
Sure! Just add this value at Settings > Modern Footnotes > Modern Footnotes Custom CSS:
.modern-footnotes-footnote a { color: red; }Alternatively, rather than
color: red;, if you have a specific shade you want, you can use a hex code – for example,color: #ff0000;Best,
SeanForum: Plugins
In reply to: [Modern Footnotes] ElementorHello,
The fix for the Elementor issues is still in progress.
Best,
SeanForum: Plugins
In reply to: [Modern Footnotes] Plugin updateHi @alealealeale1234 ,
I’ll definitely keep the plugin up to date with future WordPress updates.
I will also look at Divi Builder compatibility, although I’ll likely be slower to get back to any Divi Builder issues. I haven’t tested with Divi Builder recently but there are some Elementor issues I’m working through, so I wouldn’t be surprised if Divi Builder has an issue or two.
If there are any issues though, once they are fixed, the plugin should stay compatible with both going forward.
Forum: Plugins
In reply to: [Modern Footnotes] Footnote List Not DisplayingHi everyone,
I am actively working on a fix for this and will let you know when it is ready! It’s not the easiest fix so it may take me a bit to finish it, but this is the top thing I’m working on for the plugin right now.
Best,
SeanForum: Plugins
In reply to: [Modern Footnotes] Non-superscripted reference — is it possible?Hi @oanishchik ,
You’re right, the <sup> element is part of the PHP and right now the HTML tag can’t be customized. However, you could use CSS to override the appearance of this element so it looks like normal text. This custom CSS should do the trick (you can enter this in the Settings > Modern Footnotes page for the custom CSS):
sup.modern-footnotes-footnote { vertical-align: baseline; font-size: 1em; position: static; }You can add any other CSS into this rule as well to customize the appearance of the “Reference” text.
Best,
Sean