DowntownRob
Forum Replies Created
-
Have you cleared your Feedburner cache using the link on the options page?
If so, perhaps the images are too large and feedburner isn’t wanting to display them, have you tried different sizes?
The plugin is outputting the images ok in the feed, and that’s all it does… be sure there aren’t any feed redirection plugins installed. I’m not sure what else it could be.
Forum: Plugins
In reply to: [Featured Images in RSS for Mailchimp & More] Featured Image Not Showing UpHi there,
Do the images show up in the raw feed? If so, the plugin is working well. Be sure to remove any RSS redirection plugins, it seems to break things with the plugin for feedburner.
If there’s no redirection, try using the Feedburner link on the options page to flush the feedburner cache.
If images are showing in the raw feed but not feedburner still, then perhaps try making the images smaller, disable all plugins in case of a conflict, and flush the Feedburner cache again.
Hi Tevya,
You’d have to add the proper CSS to Mailchimp to size them using max-width: 100% or add padding, etc.
Here’s code that sets the width to be 100% that you could try:
<style type="text/css">..rss-content img {width:100% !important; margin-top: 10px !important; margin-bottom: 10px !important; }</style>I’ve used this code in the past to left align and add padding to thumbnail sized images in the Mailchimp template itself:
<style type="text/css">.rss-content img { padding: 0px 10px 0px 0px; float: left; } </style> <span style="font-size:12px">*|RSSITEMS:|*</span> <h2 class="mc-toc-title">*|RSSITEM:TITLE|*</h2> Posted on *|RSSITEM:DATE|* <div class="rss-content">*|RSSITEM:CONTENT|*</div>See if adding CSS to the Mailchimp template helps.
Hmm, that should work, or try the .rss-content img instead?
Not sure, I’d suspect the theme itself then. Replace it with a default theme, see if it goes away.
This plugin only adds images.
Hi there,
The plugin is adding images ok, that’s all it does. The rest of the feed is from WordPress itself, and the feed2js site is outputting it as javascript, which probably has it’s own issues, and looks like a Facebook javascript issue, I’d recommend contacting the feedjs.org folks for support on that.
Hi Dave,
The feed looks great, so the plugin is working as intended. The images are kinda large for Mailchimp use, try thumbnail size instead?
Yes the template in Mailchimp should be reworked to handle the images better… I’d contact them for help on that.
I had to rework a template to get the text to wrap around the image with a padding, here’s the body code I ended up using:
<style type=”text/css”>.rss-content img {
padding: 0px 10px 0px 0px; float: left;
}
</style>
<span style=”font-size:12px”>*|RSSITEMS:|*</span>
<h2 class=”mc-toc-title”>*|RSSITEM:TITLE|*</h2>
Posted on *|RSSITEM:DATE|*<div class=”rss-content”>*|RSSITEM:CONTENT|*</div>
Forum: Plugins
In reply to: [Featured Images in RSS for Mailchimp & More] Non-Featured Image Use?Hmm, that’s not good, perhaps there’s a way to fix the plugin code. Maybe I can add some of it’s functionality into mine as well.
Forum: Plugins
In reply to: [Featured Images in RSS for Mailchimp & More] Non-Featured Image Use?Hi there,
The new blog post being created should have a unique featured image set, and it will get sent out using RSS. It will not send out the same post repeatedly…
This plugin only works with featured images.
You could look at using something like this:
http://wordpress.org/plugins/default-thumbnail-plus/
but it doesn’t handle RSS feeds.Ah, try this plugin instead?
https://wordpress.org/plugins/rss-image-feed/ – The RSS Image Feed adds the first image of a post to your feeds.Forum: Plugins
In reply to: [Featured Images in RSS for Mailchimp & More] Featured Image not showing upHmm, this plugin attaches to the main RSS feed filter, so it should work, using the tag feed URL such as:
http://example.com/tag/yourtagname/feed(reference this for more feed examples: http://codex.wordpress.org/WordPress_Feeds )
I don’t see any other specific tag feed filter I could use, only for the content, and for excerpts.
Forum: Plugins
In reply to: [Featured Images in RSS for Mailchimp & More] Featured Image not showing upHi Luis,
It looks like it’s working to me… your feed has images, and I see it in the source code of the feed as well:
<description><![CDATA[<img width=”150″ height=”150″ src=”http://aptossobreplanos.com/wp-content/uploads/2014/05/DOS-ALCOBAS-88.8-150×150.jpg” class=”attachment-thumbnail wp-post-image” alt=”DOS ALCOBAS 88.8″ style=”float: left; margin-right: 5px;” /><p>Lorem ipsum dolor sit amet…
Maybe it was a caching issue, that’s the usual cause.
Ah thanks for the praise, I appreciate it.
Forum: Plugins
In reply to: [Form Abandonment Tracking for Google Analytics GA4] Inicial ConfigSorry for the delay. Yes it uses <form ID> values, not names.
The stats on GA take about 12-24 hours to catch up and get added, maybe there’s a delay to what you’re submitting vs the totals it’s showing? If they’re being triggered, it should be sent and recorded on the GA side, and eventually counted.
Forum: Plugins
In reply to: [Featured Images in RSS for Mailchimp & More] Additions to the PluginAh thanks, I’ll look into updating the plugin to support the media:thumbnail and the Photon sizing, much appreciated.
Forum: Plugins
In reply to: [Featured Images in RSS for Mailchimp & More] Duplicate imagesHi there,
If your theme is outputting the image with the body of the post, then a featured image will display as well, you can either remove the image from the body, or remove the featured image. If it affects the way the blog posts are output on the site, then you could customize the theme output, but if it uses featured images properly (displays them in excerpt list, and on the single post page) then simply stop adding them to the body. If it’s not displaying featured images on the single post page, then customizing the theme to add them should be fairly easy, edit the single.php file, put this just above the_content(); line:
if ( has_post_thumbnail() ) {
the_post_thumbnail();
}