The Feedly Optimizer appears to be dead in the water… will it ever be back, or a replacement put together?
]]>Hi,
First, thanks for your extension. I use it to .. “optimize my feed for feedly” ?? .
I have a little issue but maybe of my fault : i don’t have my site icon displayed near my posts on my rss client (feedly or palabre app).
These are my OYFFF settings :
Cover url : https://legeekducerisier.fr/wp-content/uploads/logo-large-le-geek-du-cerisier.png
Icon svg url : https://legeekducerisier.fr/wp-content/uploads/icone.svg
Featured image : off (i use another plugin for that)
Logo svg url : https://legeekducerisier.fr/wp-content/uploads/icone.svg
Accent Color : i choosed mine.
Google Analytics UA : i wrote mine.
Am i doing something wrong ?
Thanks
]]>SVG upload is not enabled in WordPress by default. Users will need to add this code to their theme’s functions file to enable it.
function cc_mime_types($mimes) {
$mimes['svg'] = 'image/svg+xml';
return $mimes;
}
add_filter('upload_mimes', 'cc_mime_types');
Or they will have to upload image to their server via FTP which will be difficult for most users.
It would be nice if this code is added in the plugin to enable SVG upload in WordPress when this plugin is active.
Thanks
https://www.ads-software.com/plugins/optimize-your-feed-for-feedly/
]]>