After some more testing it appears that this plugin is causing an error:
Non-static method WP_Feed_Cache::create() should not be called statically
wp-includes/SimplePie/Registry.php:215
SimplePie_Registry->call()
wp-includes/class-simplepie.php:1313
SimplePie->init()
wp-includes/feed.php:783
fetch_feed()
wp-content/plugins/super-rss-reader/includes/widget.php:146
SRR_Widget::render_feed()
wp-content/plugins/super-rss-reader/includes/widget-admin.php:37
super_rss_reader_widget->widget()
wp-includes/class-wp-widget.php:380
WP_Widget->display_callback()
wp-includes/widgets.php:805
dynamic_sidebar(‘blog-sidebar’)
wp-content/themes/salient/sidebar.php:22
load_template(‘wp-content/themes/salient/sidebar.php’)
wp-includes/template.php:672
locate_template()
wp-includes/general-template.php:111
get_sidebar()
wp-content/themes/jts/single.php:138
____
I disabled and tested other plugins and they’re not causing any errors. These are only generated with this plugin running.
The problem is with $enclosure->get_thumbnail() not generating a URL. I have tried figuring out a solution without any success π
Everything is working as expected otherwise.
Also found this https://core.trac.ww.wp.xz.cn/ticket/29204
Fingers crossed there’s an easy solution!
Hi Jarod,
Looking at the RSS feed you’ve shared, it does not have media:thumbnail tag.
Only when the RSS feed has that the thumbnail will be displayed.
Please see below RSS feed for example. You will see thumbnails in the feed.
http://feeds.washingtonpost.com/rss/politics?tid=lk_inline_manual_2&itid=lk_inline_manual_2
In your case, the post content has images. They are not considered as thumbnails.
I’m the author of the ticker feature. Since you are very interested, you can use the other plugin (rss retreiver) and use the ticker functionality on your own.
Include the ticker file.
<script src="https://rawcdn.githack.com/vaakash/jquery-easy-ticker/23d091886c2536ff7d158149d3e6d815ce2c9923/src/jquery.easy-ticker.js"></script>
and activate the ticker by pasting the code below.
<script>
$(document).ready(function(){
$('.wp_rss_retriever').easyTicker({
direction: 'up',
easing: 'swing',
speed: 'slow',
interval: 3000,
height: 'auto',
visible: 0,
mousePause: true
});
});
</script>
Thanks,
Aakash
Awesome. This is a good work-around, easy solution π
Here’s my real-world application https://jarodthornton.com/2020/05/01/converting-static-html/
Cool..
I suggested the manual way because, you have shared techcrunch’s feed.
The feed you are currently using has images in description itself.
So in Super RSS Reader itself, you can simply enable description with “enable full or rich description” and you will get results like below.
https://i.snipboard.io/IGCDsA.jpg
You can switch back to Super RSS reader if that works for you.
Thanks,
Aakash
I wanted to use Super RSS – I really tried to figure out why it wasn’t working per my original post. See this example using the real feed I am working with: https://adopttheweb.com/demo/another-test/
… Enable full or rich description …
I have no idea how this got away from me? CSS to hide the source below…