Hi bufer. Thanks for contacting us. This is completely normal; our plugin sets the external featured image via CSS. This way, we can resize the featured image to any size (changing the aspect ratio, if needed) and the featured image won’t be stretched.
On the other hand, I don’t think other plugins have issues with ours because of the fact we’re setting the external featured image as a CSS attribute instead of the src attribute of an img tag. Anyway, if you could be more specific, we may be able to further help you.
Thread Starter
bufer
(@bufer)
Yes the social plugin dont view image..Then i click share dont apper image at the post.
http://static.md/3e74cb6f7fe870c029067f0a68abad6c.jpeg Apper this
I see. Then it depends on how this social plugin works. Does it load the image using JavaScript or PHP? That’s the first thing you have to know. If it uses JavaScript, then you can modify our plugin so that the featured image is not placed via inline styles, but using the src attribute directly (just edit the file includes/nelio-efi-main.php lines 80-88).
If it doesn’t use JavaScript, then I guess you’ll have to examine the social plugin and detect where it retrieves the featured image. Once you know this, just make sure that, before using default WordPress functions, you query whether the current post has an external featured image (function uses_nelioefi( $post_id )) and, if it does, what is the URL of that image (function nelioefi_get_thumbnail_src( $post_id )).
Good luck!