DowntownRob
Forum Replies Created
-
Forum: Plugins
In reply to: [Featured Images in RSS for Mailchimp & More] Additions to the PluginVery nice, explain what the media:thumbnail is different from the image element? It adds that specific XML tag to the output as well? I’ve heard of it but not clear on what it’s used for or by which sites, etc…
Forum: Plugins
In reply to: [Form Abandonment Tracking for Google Analytics GA4] Inicial ConfigIt doesn’t really have a configuration page… it simply sends the form ID and form field ID names to Google Analytics – just make sure you have the tracking code added to your site already, I recommend Google Analytics for WordPress (by Yoast).
The events show up in Google Analytics under Behavior > Events > Overview, and Behavior > Events > Top Events.
You can then create Conversion Goals based on these Events (‘completed’ and ‘submitted’):
Goal Type: Event
Category, Equals to: <form name>
Action, Equals to: “submitted”I see, it’s being added to the social sharing icons with the title?
It should only be adding that image code to your RSS feed:
http://pixeldynamo.staging.wpengine.com/feed/and the sharing code should not be using the feed content to produce the title code… the normal WordPress loop would do that just fine.
It’s a poorly coded plugin or theme somehow using one of these two filter hooks to get the post titles:
add_filter(‘the_excerpt_rss’, ‘featured_images_in_rss’, 1000, 1);
add_filter(‘the_content_feed’, ‘featured_images_in_rss’, 1000, 1);and the function above attached to those two hooks simply added the featured image SRC and CSS before the content being returned with the normal RSS feed output.
I don’t see a way to resolve it on my end… it’s doing it wrong I think.
I’m not sure how it’s affecting objects in the pages of posts… the code simply attaches to the RSS hooks, then appends the IMG code with it’s own CSS formatting to the front of the content normally being generated.
Care to send me the feed URL so that I can debug further?
Forum: Plugins
In reply to: [Featured Images in RSS for Mailchimp & More] Remove default small imageIs that because your theme is outputting a default 150 image? It would be different based on the specific theme you’re using, I think.
I appreciate your feedback.
Thanks,
RobForum: Plugins
In reply to: [Featured Images in RSS for Mailchimp & More] Images show up twiceHI there,
It seems your posts have the images set in the body, as well as the featured image set? That would result in double images, if your theme does not display featured images and so you include them in the body.
The resolution is to either use a theme that uses and displays the featured image, or add the featured image to your existing theme, which should be a few lines of code:
In the functions.php file, add:
add_theme_support( ‘post-thumbnails’ );
set_post_thumbnail_size( 80, 55, true ); // W x H, hard cropThen in the single post page, these lines would be added in the right spot:
<?php
if ( has_post_thumbnail() ) {
// the current post has a thumbnail
the_post_thumbnail();
} else {
// the current post lacks a thumbnail
}
?>More info: http://markjaquith.wordpress.com/2009/12/23/new-in-wordpress-2-9-post-thumbnail-images/
Let me know if it’s still an issue, and follow up using my contact form please.
Forum: Plugins
In reply to: [Advanced Automatic Updates] Plugin updates are not workingI had some progress, I manually updated all the plugins, and then after, this plugin is updating them ok now. Perhaps there was something blocking or creating an error previously. It’s working ok again now.
Hmm, I’d log out, and then log back in. I get this once in a while myself if the session cookie expires, and it doesn’t realize it.
If it continues to happen, use the contact form at http://webwizards.net/wordpress/ to send me an Admin username and password (not yours, create a new one), and I can log in and take a look deeper. Then you can delete that admin user afterwards.
Hi there,
My plugin only works with WordPress’ Featured Images attached to posts in the Media Library, it doesn’t work with custom fields or custom links.
You may need a plugin that takes RSS feeds and creates blog posts for them, and attaches an image as a featured image. Then it would work ok I think.
Forum: Plugins
In reply to: [Featured Images in RSS for Mailchimp & More] Multisite?Oh and yes it fully supports multisite with settings per site, and I usually see it used with subdomains easily, with a domain mapping to each subdomain, works great.
Forum: Plugins
In reply to: [Featured Images in RSS for Mailchimp & More] Multisite?Hi there,
If you have different feeds, it should add photos to each feed. WP is the one that is creating the feeds…
You should be able to use mysite.com/shoesformen/feed/ if Multisite is set up as subdirectories (not subdomains), and then that should be the feed address.
Yes that’s the right page… stands for featured image rss.
Not sure how the theme would, but who knows, maybe a plugin?
If need be, send me an admin login via email rob at webwizards.net, perhaps we can enable debug logs and see what’s going on more.
Hmm, it’s using the General Options form (options-general.php) so that should work.
You can view this page ok?:
http://www.milehighmamas.com/wp-admin/options-general.phpBut not this page?:
http://www.milehighmamas.com/wp-admin/options-general.php?page=firss_settingsOnly other suggestion is to try it with the latest version of WP 3.8.1, and a default theme like Twenty Fourteen, it’s working for me in a fresh installation… there could be a permissions or role plugin issue causing weirdness perhaps.
Oh, you could also try logging in in an Incognito (private browsing) window, see if that works. If so, it points to a corrupt cookie issue.
Also, try a different browser, and if works, that also points to a browser cache or cookie issue.