Jason Yingling
Forum Replies Created
-
Forum: Plugins
In reply to: [Easy Footnotes] Please fix the error message occurred after WordPress 6.7@alexclassroom @muslim-syamsul-arifin this should be resolved in 1.1.13 that just went out. Let me know if you still see an issue.
Sorry I missed the original post but got @muslim-syamsul-arifin’s notification.
Forum: Plugins
In reply to: [Reading Time WP] Replace < with textThere isn’t currently a way to easily do that. Let me get a filter added in and I can provide a code snippet to switch it out after that update. In the meantime if you need to you could edit it in the plugin file directly. Though if you do that the next plugin update would wipe out your change.
Forum: Plugins
In reply to: [Reading Time WP] Change Font-SizeYou can do that by adding CSS within your site. You’d want to add something like:
.rt-reading-time {
font-size: 0.75rem;
}Where font-size can be your preferred size or unit. I like to use
remroot-em which is based off the size of the root element. So let’s say your standard font-size is 16px on the root element of your site. This would be .75 of that or 12px. Its more flexible when users zoom in and out or increase font-sizes of their browser than setting it directly to 12px. Though you can do that too if you want.Forum: Plugins
In reply to: [Reading Time WP] How do I exclude Reading time on a specific page?There are a few different options you can use and it varies theme to theme. You can try playing around with the Reading Time settings to see if its getting added to those through the excerpt or the content.
The easiest way may be to hide it via CSS. It looks like your theme adds a
.blogclass to the<body>element on that page so something like:.blog .page-header + .rt-reading-time {
display: none !important;
}That should target only pages where the
<body class="blog">and only the.rt-reading-timethat is directly adjacent to the.page-headercomponent. I had to add!importantto the rule as it seems there is another bit of CSS set to important in your site styles already.Hope that helps!
Forum: Plugins
In reply to: [WP SmartCrop] Performance Issues in 2.0.8I’m seeing the same issues as well. Updating WP SmartCrop to 2.0.8 or 2.0.9 causes our site to 502.
Forum: Plugins
In reply to: [Reading Time WP] Strings not translated using WPMLHi there, how are you outputting the reading time on your site? If you’re using the shortcode you would need to translate the shortcode itself as opposed to the strings for the labels.
If you are using the option to add the reading time to the excerpt or the content directly, have you checked with WPML support?
Also are you using the latest version, 2.0.15? That changed to load the plugins locale on the init call which should work better with other plugins.
- This reply was modified 2 years, 7 months ago by Jason Yingling.
Forum: Plugins
In reply to: [Reading Time WP] <1 have s"This will be resolved in version 2.0.14 going live soon.
Forum: Plugins
In reply to: [Reading Time WP] Gutenberg Query LoopThanks for sharing. I’ll take a look at options for implementing to be able to get the post ID from within a query loop when embedding the shortcode in the post template.
Forum: Plugins
In reply to: [Reading Time WP] PHP Warning: Undefined array key “before_excerpt”Updated in the 2.0.13 release. Let me know if you still see issues after updating.
Forum: Plugins
In reply to: [Reading Time WP] All ACF posts are still under 1 minute@revive I think you approach there is probably the best to get things up and running.
Could also look at using the ACF
get_fields()orget_field_objects()functions to get all of the fields for a certain post, but you’d still need to loop through everything those return.https://www.advancedcustomfields.com/resources/get_fields/
https://www.advancedcustomfields.com/resources/get_field_objects/
Forum: Plugins
In reply to: [Easy Footnotes] Title Header for FootnotesThere is an option for turning on and editing the Easy Footnote Label in Settings > Easy Footnotes.
Just make sure that is checked and whatever you have in the text will display above the footnotes at the end of the post.
Additionally there is a FAQ on programmatically modifying it via a hook. https://ww.wp.xz.cn/plugins/easy-footnotes/faq/
Forum: Plugins
In reply to: [Reading Time WP] How to add reading time in MetadataAssuming you’re referring to adding the reading time to how that other data is displayed on the front-end, you would need to modify your theme code to call the Reading Time shortcode within that section of your theme’s code.
Forum: Plugins
In reply to: [Reading Time WP] Can I make this work with WPML?@davidtriumphdesign strings are also included in code with the reading-time-wp text domain. So all strings should show up in WPML > String Translations with that domain.
Forum: Plugins
In reply to: [Reading Time WP] The update is very much neededTested in the latest versions of WordPress and updated. I imagine Wordfence’s warning was just related to the fact the plugin hadn’t been updated in awhile. There isn’t much going on under the hood security wise, but if Wordfence indicated any specific issues please let me know.
Forum: Plugins
In reply to: [Reading Time WP] Every post is under 1 minuteThen you’ll want to take a look at using the
rtwp_filter_wordcountfilter to add your ACF fields to the wordcount. https://ww.wp.xz.cn/plugins/reading-time-wp/#how%20can%20i%20add%20meta%20fields%2C%20say%20from%20advanced%20custom%20fields%2C%20into%20the%20reading%20time%20wp%20count%3FAnother example from the support forums of how a user integrated with their ACF fields. https://ww.wp.xz.cn/support/topic/include-word-count-for-acf-fields-cpt-and-multiple-templates/