5 Star Plugins
Forum Replies Created
-
Forum: Reviews
In reply to: [Dynamic Copyright Year] Works almost as expected.@knud Thanks for your feedback, we will need to dig into that more and see if we can improve upon the date and year parsing based on your example.
Forum: Reviews
In reply to: [Dynamic Copyright Year] Works almost as expected.Hi @knud thanks for your review… I’ll look into this more, and see if we can replicate it not working if there are numbers in the company name. It is coded to look for year values only (19XX and 20XX), so there may be some formatting issues if a year is in the company name itself as well.
Great, thanks so much.
(Sending from my 5star account) @mukto90 I went through the wizard, and it seems to have invalidated my previously emailed API keys… it said it emailed a new one, but I have not received it. I entered in my previous API key, and now it says “API Key Verification Failed”. I also don’t see where in the Settings etc to submit the API key or to try and get a new one?
Sorry for more trouble.
~ Rob
@mukto90 Thanks so much for following up, I appreciate it. I will update and also do a fresh install on a new site, and I look forward to using it more.
Forum: Reviews
In reply to: [Pretty Simple Popup Builder] Efficient but can do betterI appreciate the review @mister_russ but please open a support thread on the image resolution issue… that should not be happening.
You mention images in emails, are you using Pretty Simple Popup Builder plugin, or our other plugin Featured Images in RSS, and left the review on the wrong plugin?
Forum: Plugins
In reply to: [AI Engine] PHP 7.4 Fatal Error With v2.8.6 (2025/07/02)Thanks @tigroumeow I appreciate it.
Forum: Plugins
In reply to: [AI Engine] PHP 7.4 Fatal Error With v2.8.6 (2025/07/02)@stear111 but also explore switching your site over to PHP 8.2 or 8.3… more and more plugins will stop supporting 7.x over time. You can always switch the PHP version, and test the site, and if anything breaks, you should be able to just switch it back to 7.x.
Forum: Plugins
In reply to: [AI Engine] PHP 7.4 Fatal Error With v2.8.6 (2025/07/02)@stear111 That function would replace the function in this file at line 134-5ish:
ai-engine/classes/services/message-builder.php on line 136
Get the older versions here, scroll to the very bottom:
Hi @d1taylor our free plugin adds it to the RSS Description because it works easily and quickly within most email RSS campaigns like in Mailchimp, etc.
Our Premium plugin supports the Media and Enclosure tags, due to the increased amount of support and development that implementation involves. Try the free 14 trial of the Premium version to see if it resolves your needs for Feedly. We’ve kept the Premium plugin cost as low as possible while improving and adapting the plugin, keeping it secure, and well supported.
More info here: https://5starplugins.com/rss-feed-images-featured-images-wordpress/
and be sure to check out our RSS Image Checker tool here: https://5starplugins.com/rss-image-checker/
Thanks,
RobForum: Plugins
In reply to: [Super Page Cache] Fatal Error On Update Settings@hammyhavoc A quick edit of this file using any File Manager tool:
/plugins/wp-cloudflare-page-cache/libs/cache_controller.class.php
Line 3030:
Change: extension_loaded( ‘Zend OPcache’ ) to extension_loaded( ‘opcache’ ) and save it. That should solve the fatal error for you until they can patch the plugin properly.
Hi @cconstantine you can use the same RSS hooks we use, is_feed(), has_post_thumbnail(), get_the_post_thumbnail(), etc.
For example:function add_figure_to_rss_content($content) {
if (is_feed()) {
global $post;
// Check for a featured image
if (has_post_thumbnail($post->ID)) {
// Get the featured image HTML
$thumbnail_html = get_the_post_thumbnail($post->ID, 'large');
// Optionally add caption or figcaption if you like:
$caption = get_post(get_post_thumbnail_id())->post_excerpt;
$figcaption_html = $caption ? "<figcaption>" . esc_html($caption) . "</figcaption>" : "";
// Wrap in <figure>
$figure_html = "<figure>{$thumbnail_html}{$figcaption_html}</figure>";
// Prepend or append to the content
$content = $figure_html . $content;
}
}
return $content;
}
add_filter('the_content_feed', 'add_figure_to_rss_content');We may be able to add this option to our plugin, so it’s a simple checkbox. We’ll evaluate this and see if it’s something we’d want to add in a future update.
Forum: Plugins
In reply to: [NSFW] [Easy Age Verify] one pageHi @peterle1984 we do have page targeting or page exclusion functionality in the queue to add. Let me see how close we are to releasing that and get back to you, and you will see an update to the plugin once it’s been released.
Forum: Reviews
In reply to: [Marijuana Age Verify] Does What it SaysThanks @markajohnstone we appreciate your great review! I’m glad you’re using our plugin, it looks great on your site!
~ Rob
Hi @fabianglueglue I see the Enclosure tags in your RSS feed, so that all looks good, but I do see some posts, like the 3rd post right now Circle, do not have the enclosure tag in the feed. That is strange, because the plugin should be adding it to every post. I do see some size and other differences with the image on that post vs other posts, it was cropped to a smaller 400×400, and renamed differently, and does not have responsive images either. It is also has lazyloading added (loading=”lazy”), I think there is something else, a plugin or theme option, affecting the image and the feed on that particular post. I see the others look normal in the feed, at larger sizes, and with responsive images, no lazyloading, etc. Try removing the featured image, and add it again in the same way as the others, no cropping or resizing etc.
I would also recommend using our RSS Image Checker tool:
https://5starplugins.com/rss-image-checker/