Trying to add in Customizer causes this UI error: https://share.getcloudapp.com/04u20XY9
And causes these PHP notices:
PHP Notice: Undefined index: mp_featuredimg_1 in /wp-includes/class-wp-customize-widgets.php on line 577
PHP Stack trace:
PHP 1. {main}() /index.php:0
PHP 2. require() /index.php:17
PHP 3. wp() /wp-blog-header.php:16
PHP 4. WP->main() /wp-includes/functions.php:1291
PHP 5. do_action_ref_array() /wp-includes/class-wp.php:763
PHP 6. WP_Hook->do_action() /wp-includes/plugin.php:551
PHP 7. WP_Hook->apply_filters() /wp-includes/class-wp-hook.php:316
PHP 8. WP_Customize_Widgets->customize_register() /wp-includes/class-wp-hook.php:292
PHP 9. WP_Customize_Widgets->is_wide_widget() /wp-includes/class-wp-customize-widgets.php:509
]]>PHP Notice: Trying to access array offset on value of type null in /wp-includes/class-wp-customize-widgets.php on line 577
PHP Stack trace:
PHP 1. {main}() /index.php:0
PHP 2. require() /index.php:17
PHP 3. wp() /wp-blog-header.php:16
PHP 4. WP->main() /wp-includes/functions.php:1291
PHP 5. do_action_ref_array() /wp-includes/class-wp.php:763
PHP 6. WP_Hook->do_action() /wp-includes/plugin.php:551
PHP 7. WP_Hook->apply_filters() /wp-includes/class-wp-hook.php:316
PHP 8. WP_Customize_Widgets->customize_register() /wp-includes/class-wp-hook.php:292
PHP 9. WP_Customize_Widgets->is_wide_widget() /wp-includes/class-wp-customize-widgets.php:509
Since this plugin appears to be dead, what are people switching to / going to switch to instead?
]]>the plugin displays the largest available image size which slows down loading.
can we have an option to select the image size to display.
Hi There – thanks for the plugin.
Using a Genesis child theme (and maybe others, I haven’t tested) on a search results page where nothing was found the widget gives this error – displays in the widget area:
Notice: Trying to get property of non-object in …/wp-content/plugins/featured-image/featured-image.php on line 25
Notice: Trying to get property of non-object in …/wp-content/plugins/featured-image/featured-image.php on line 26
]]>Hello!
I see that this featured image plugin has not been updated for over a year now, and I was wondering if it will get any future updates and be maintained with new features, and most importantly new security updates.
Since many hack attacks rely on holes and vulnerabilities of plugins, using outdated plugins could be a a big risk for getting your site hacked.
Please let me know.
Thanks!
Hello.
This pluggin has been working great for us for a long time, but i just realized it stopped working probably due to the wordpress updates. Anyone else is having the same problem? Do we know of any fix or future fix for this?
Hey, great plugin.
Is there any way to automatically add the shortcode to each post?
]]>Hi,
is it possible to assign a featured image to a tag-page (a page, which is generated by wordpress for each tag and shows all the articles with the concerning tag)?
Henner
]]>Put like this:
<figure class=”responsive”
data-media=”[shortcode]” >
</figure>
Hello, recently, my featured images have not been appearing on Facebook. I used to be able to run it through the Facebook Debugger, but now even that is not working. See sample link below:
https://tinseltownmom.com/bethenny-frankels-6-tips-for-getting-better-sleep/
Thanks for any help!
Tirralan
]]>I’ve added an image on the page editor and saved (published) but nothing shows up. No where in the help does it say where it should show up and there are no examples of a page to look at with this featured image.
]]>Hello every one!
I read this topic about featured content https://www.ads-software.com/support/topic/featured-image-repeating?replies=6 and have a question similar to it.
I want my featured content to be displayed 4 times on the start, even if I have 8 posts displayed.
Possible?
]]>Is there an over-riding switch somewhere that disables Featured Image?
In my test site, I had each page with its own featured image, but in live I only get the image from the header
Thanks
]]>Every time I create a new post, the first image in my post becomes a huge featured image on the post. I do not have it set to be my featured image and I do not want it to be that way. Right now when I go to my home page, I have it set so the most recent post is my home page, but when you click on “home” the most recent post will appear with a huge image of the “featured image” and you can click on this image and it will go to that specific post. I do not like this at all! There must be some sort of setting that will remove this option. I know how to remove and add a featured image to a post and there is nothing that I am seeing in my setting options that indicates that I have a featured image set for a particular post. Please help! Extremely frustrating!
Thanks.
]]>My featured images were working well, but after activating jetpack, they now appear enlarged and blurry.am not sure why this is happening, any ideas?
Thanks. my site is https://www.techstocktalk.com
for instance look at this image.
https://www.techstocktalk.com/?p=1228
I simply can’t check “Featured Image” to “Show on screen” because there simply isn’t such option. I activated this plugin, but can’t see option like shown in this plugin screenshot.
]]>I’m not too wordpress savy, but I have recently been having trouble sizing my featured image. All of my older posts turned out just fine when I resized them, but now when I attempt to size my feature image now, it doesn’t work. It still appears as a default 663:189 – and this size isn’t very complimentary to many of my photos. this problem started 2-3 days ago, when i updated my wordpress, could this be an update issue? help!
]]>Could you add a small feature where you could output the caption and / or description for that image below the image (best with styles around that so you can style the text as you like)?
]]>Hi Mervin,
I installed your plugin in my website. The widget shows up, but not on my pages. I suppose I have to put that shortcode [ featured-img ] somewhere, but I don’t know where?
Same goes for the piece of code: <?php if ( function_exists(‘get_featured_img’) ) get_featured_img(); ?>.
Can you diret me to the correct files?
Thanks in advance!
Barbara
“Featured Post” is not working, in fact it is not even showing up anywhere! I’ve tried everything, except the one that works. I’ve read and tried a number of remedies posted on this site, but nothing fixing the problem (whatever that is)!
BTW, I am using the latest version of WP.
Anyway, your help is appreciated!!!
The site is SaranagatiVillage.com
]]>First: i like this plugin (especially the widget). thanks!
when i use it as an widget, there will be an empty img tag generated, when no featured image is set. So in Internet Explorer we see a placeholder, which doesn’t look fine.
It should be checked, if a featured image is set
So I suggest the following solution (addition)
function getting_featured_img() {
$image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'single-post-thumbnail' );
if ( has_post_thumbnail() ) :
$mpfeatureimg = " <img src='" ;
$mpfeatureimg .= $image[0];
$mpfeatureimg .= "' />";
return $mpfeatureimg;
endif;
}
]]>