DowntownRob
Forum Replies Created
-
My plugin doesn’t yet support RSSITEM:IMAGE or FEEDITEM:CONTENT because it doesn’t use the media:encode format, it just adds the image using HTML/CSS to the top of the RSS:CONTENT_FULL portion.
Try this plugin instead:
https://wordpress.org/plugins/wp-rss-images/screenshots/It has the Enclosure and Media tags, which I hope to implement soon as well.
Forum: Plugins
In reply to: [Featured Images in RSS for Mailchimp & More] Image Below TextNice! My pleasure. Consider a donation if I saved you some headache.
https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=R4SE22RQ4CB2E
Forum: Plugins
In reply to: [Featured Images in RSS for Mailchimp & More] Image Below TextAh that would work, depending on the theme and how it displays the posts, etc. If it’s working for you the way you want, you’re all good.
Featured images are used by themes in different ways, so if you ever change themes, then it may require a featured image be set to show it, but perhaps you can cross that bridge if you ever get to it.
Forum: Plugins
In reply to: [Featured Images in RSS for Mailchimp & More] Image Below TextAh sorry, not at this time. It always inserts above the text, but the text can wrap around it.
You could try just adding this code to the bottom of your theme’s functions.php file (caution, first make backups, have FTP access for repairs if need be, etc) and it’ll add the image below the text:
function featuredtoRSS($content) { global $post; if ( has_post_thumbnail( $post->ID ) ){ $content = $content . '<div>' . get_the_post_thumbnail( $post->ID, 'medium', array( 'style' => 'margin-top: 15px;' ) ) . '</div>'; } return $content; } add_filter('the_excerpt_rss', 'featuredtoRSS'); add_filter('the_content_feed', 'featuredtoRSS');Forum: Reviews
In reply to: [Featured Images in RSS for Mailchimp & More] Works like a charm!Thanks! Nice, I’ll look at adding that to the default CSS output soon.
Forum: Plugins
In reply to: [Featured Images in RSS for Mailchimp & More] No media:content tagYour RSS feed could be modified by my plugin, another plugin, the theme, or any combination of the above.
My plugin doesn’t yet support media:content tag, maybe it’s being added by some other plugin or the theme?
I’m working on adding more features to it, but it shouldn’t be required, there are lots of people using Mailchimp, just don’t use the feed:item, use *|RSSITEMS:|* and *|END:RSSITEMS|*, with some CSS for the image. Works great.
View other support threads for more Mailchimp CSS tips.
Forum: Reviews
In reply to: [Featured Images in RSS for Mailchimp & More] Great supportWe got it working well for you. Please click here, then click the Post Review button to update your review:
https://wordpress.org/support/view/plugin-reviews/featured-images-for-rss-feeds#postformForum: Reviews
In reply to: [Featured Images in RSS for Mailchimp & More] Great supportCan you email me the website URL and it’s feed URL? I can view the raw feed (not in feedly) and see if the image is there or not. Why it’s loading slow, I have no idea, but let me take a look.
rob at presswizards.com
Forum: Reviews
In reply to: [Featured Images in RSS for Mailchimp & More] Great supportAnd you can see from the other reviews, it’s working just fine in WP 4.2.2. Let’s figure out what’s going on.
Forum: Reviews
In reply to: [Featured Images in RSS for Mailchimp & More] Great supportAre you sure? π Uh-oh, let me look into it, it’s working on sites as far as I know. I just had a site the other day that had server-side caching, and the images only showed up after the cache was cleared.
I’d like to troubleshoot it more if you like. Email me rob at presswizards.com
Thanks,
RobForum: Plugins
In reply to: [Icegram Engage β Popups, Optins, CTAs & Lead Generation] No longer pops-upHi all, I’ve tried the new Icegram v1.9, and it’s still not fixed. I’ve tried Only Homepage, Sitewide, and selected pages, still no pop-up. I’ve tried turning off Lazy Load as well, and tried it in an Incognito window, after clearing all caches. Using WP 4.2.2, W3TC.
Forum: Plugins
In reply to: [Featured Images in RSS for Mailchimp & More] Avoid duplicatesAh yes, then I’d suggest for those posts, simply don’t set the featured image and use the one that’s included. You don’t have to set it for every post, only those that need it so it shows up in RSS.
Forum: Plugins
In reply to: [Featured Images in RSS for Mailchimp & More] Avoid duplicatesIt doesn’t do any detection, it simply inserts the featured image into the feed.
It’s bad practice to set the same featured image and also add it into the post… it would be displayed twice on the website if the theme supports displaying featured images.
if you’re using featured images, you should use a theme that shows them as well, and you can avoid adding the image in the post as well, and that resolves the issue.
Forum: Reviews
In reply to: [Featured Images in RSS for Mailchimp & More] Easy to use, works great!Thanks so much for your review and feedback.
Forum: Plugins
In reply to: [Icegram Engage β Popups, Optins, CTAs & Lead Generation] No longer pops-upv1.8.10 was still not popping up when I have it set to Homepage only, all users, all device. Does not matter if I turn lazy loading on or off, it’s not loading the scripts at all.
Using WP 4.2.2, disabled plugins and still not working.
I’ll try selecting another page as well as the Homepage, see if that works.