prismtechstudios
Forum Replies Created
-
Forum: Plugins
In reply to: [Modern Footnotes] Limit Modern Footnotes to specific post typesThanks @earl_d ! There is not a way to do that right now, unfortunately. You could possibly achieve this with some custom code that checks for the specific post type and deregisters the Modern Footnotes shortcodes if it’s a post type where you don’t want the footnotes to display.
Forum: Reviews
In reply to: [Modern Footnotes] Good but incompleteThat makes sense, thanks for the additional detail, @andorel !
Forum: Reviews
In reply to: [Modern Footnotes] Good but incompleteHi @andorel ,
Thanks for the feedback. I’ve noted that there’s incompatibility with the Simple Spoilers plugin, and as you mentioned, having the footnote list link back to the original location in the article is a frequently requested feature so I’ve bumped the priority up for that in the feature backlog.
Just to clarify, by There is nothing to make note link with the list at bottom when clicking , do you mean having a footnote link scroll down to the footnote list when clicking it rather than opening a footnote?
Best,
SeanForum: Plugins
In reply to: [Modern Footnotes] Using icon for Close button on mobile?Thank you for updating the CSS so it works! Good idea on making the “x” an SVG. I’ll add that in a future version of the plugin.
Forum: Plugins
In reply to: [Modern Footnotes] Using icon for Close button on mobile?Hi @prestonwordsworth ,
Thanks for the feedback!
The CSS for Modern Footnotes doesn’t change the font families, so the serif style would come from one of the other stylesheets (themes or other plugins). You can add some custom CSS to modify the “x”. Specifically targeting the “x” requires a complicated CSS selector but I believe this should work:
/* change the font family */.modern-footnotes-footnote:has(+ .modern-footnotes-footnote__note--expandable[style*="display: block"]) a {
font-family: Arial, Helvetica, sans-serif;
}/* Or, use an icon instead of the "x" */
.modern-footnotes-footnote:has(+ .modern-footnotes-footnote__note--expandable[style*="display: block"]) a {
color: transparent;
}
.modern-footnotes-footnote:has(+ .modern-footnotes-footnote__note--expandable[style*="display: block"]) a::before {
background-image: url('image-url.png');
content: ' ';
display:inline-block;
width: 20px;
height: 20px;
}Forum: Plugins
In reply to: [Modern Footnotes] want to include it in TOC table of contentThanks for the feedback, @manusarona . How are you creating your table of contents? Are you using a particular plugin for that?
Forum: Plugins
In reply to: [Modern Footnotes] Link back from list at bottomHi @dutchintouch ,
There is not a way to do that right now unfortunately. I’ll add that to the list of requested features so it can hopefully be developed sometime in the future.
Best,
SeanForum: Plugins
In reply to: [Modern Footnotes] footnotes appear inside postHi @jasongb71 ,
I don’t see the UX issue that you describe, but I do see that the footnote links are not working when you click on them. I also see this JavaScript error:
Uncaught ReferenceError: jQuery is not defined
Looking through the JavaScript loading on the page, it looks jQuery is being lazy loaded in after the Modern Footnotes JavaScript is loading. I assume there is some sort of page speed plugin you are using to change how JavaScript loads by default. Can you change it so jQuery is not lazy loaded, or so that the Modern Footnotes JS is also lazy loaded? (Either way should get the Modern Footnotes JS loading after jQuery)
Best,
SeanForum: Plugins
In reply to: [Modern Footnotes] Risky?Hi @barnabas1 ,
While this plugin is free and has no paid option (and therefore no paid development team supporting it), I prioritize keeping the plugin working smoothly and try my best to promptly address any features that come up. I don’t have as much time as I’d like to address new features or plugin compatibility issues, but I’ll do my best to always keep the core functionality working.
There are also a handful of other contributors who have helped code the plugin and may continue to do so since the plugin is open source.
Best,
SeanForum: Plugins
In reply to: [Modern Footnotes] HeadingHi @jmfouquer ,
The h2 tag is set up in your theme to use a white font color. So, to get the Notes heading text to appear, you could either:
- Set a tag other than h2 for the Heading Tag name for footnote list setting in Settings > Modern Footnotes
- Add custom CSS that targets the
h2.modern-footnotes-list-headingstyle and gives it a different font color
Best,
SeanForum: Plugins
In reply to: [Modern Footnotes] Stopped working with Wp 6.6.2Hi @muscroftm ,
Thanks for writing in about this. I checked the site and the Modern Footnotes JavaScript isn’t getting loaded on the page. I tried updating one of my test sites to WordPress 6.6.2, and things are working properly on that site. Do you use any caching plugins that might be causing the JavaScript to not load on your site?
Best,
SeanForum: Plugins
In reply to: [Modern Footnotes] How to make the tooltip go to bottom page ?Hi @riyananu ,
You can display a list of footnotes at the bottom of the post by enabling the setting at Settings > Modern Footnotes > Display footnote list at bottom of posts
However, there is not currently a setting that would make clicking a footnote number scroll down to the list at the bottom of the page.
Best,
SeanForum: Plugins
In reply to: [Modern Footnotes] Style TooltipHi @bullitt1973 ,
Yes, that’s possible! You’ll want to use this custom CSS, which you can enter in the Modern Footnotes settings:
.modern-footnotes-footnote__note {
line-height: 140%;
font-family: Arial;
font-size: 12px;
}Best,
SeanHi @modelaid ,
Thank you so much for contributing a translation for this plugin. I really appreciate the effort you put in to improve this for the community!
Best,
SeanForum: Plugins
In reply to: [Modern Footnotes] wrong number when only 1 footnotes, says “2”Hi @mmdwc ,
I’d have to look at this deeper to see the full cause, but at first glance this looks like a possible conflict between Modern Footnotes and another plugin, or perhaps something in the theme.
As a workaround in the short-term, you could try changing the shortcode to specify the reference number, for example, [mfn referencenumber=1]Je confirme cette évaluation[/mfn]
Best,
Sean