I’m quite surprised this is how it works. Have you tried to change the External Featured Image Mode in our plugin’s settings? Maybe one of the extra settings fixes the issue, but I’m not 100% sure.
Hi,
OK we tried adjusting the setting at Nelio Contents > Settings > Content > External Featured Images, but it is still the same.
In any case, we are happy that Nelio Content enables external featured images to display in Facebook link post, so we are quite OK to trade-off the small issue of a cropped featured image displaying on the actual WP post itself.
Maybe we will work around it by disabling the WP theme from displaying the featured image.
Thanks!
Hi!
OK we tried adjusting the setting at Nelio Contents > Settings > Content > External Featured Images, but it is still the same.
That’s unfortunate! Well, we implemented multiple “modes” because we know how difficult it is to make external featured images compatible with all themes. I’m afraid there are still some themes that are out of our reach.
In any case, we are happy that Nelio Content enables external featured images to display in Facebook link post, so we are quite OK to trade-off the small issue of a cropped featured image displaying on the actual WP post itself.
That sounds good. If you feel comfortable editing the theme, you can also try to use the featured image directly by retrieving the _nelioefi_url meta field (or using the helper functions in class-nelio-content-external-featured-image-helper.php.
Regards,
David
Hello,
We built our theme using Live Composer, so it’s probably a “non-standard” theme, that’s why. And considering the high probability that Nelio Content might not work on a non-standard theme at all, this display issue is a really small trade-off, LOL π
Thank you!
-
This reply was modified 8 years, 3 months ago by
Zapier01.
Thanks for the info! Anyway, being a custom theme, I’d give this a try:
$image = false;
if ( class_exists( 'Nelio_Content_External_Featured_Image_Helper' ) ) {
$aux = Nelio_Content_External_Featured_Image_Helper::instance();
$efi_url = $aux->get_nelio_featured_image( $id );
if ( is_string( $efi_url ) && strlen( $efi_url ) ) {
$image = $efi_url;
}
}
// Do whatever you want with the image.
Thank You for sharing the code.
We will get our web developer to try.
Hello,
After the recent Nelio Content plugin updates, Fb has been displaying the WP featured image as a blank rectangle, when we use Nelio Contentβs external featured image feature.
Fb Debugger says Missing Properties og:url, og:type, og:title, og:image
All these 3 missing items previously did not have.
We tried all the 3 modes and the Autoset Featured Image, but still cannot.
Is it possible to provide us a copy of the 1.33 version, for us to roll back, please?
Thank You very much!
-
This reply was modified 8 years, 1 month ago by
Zapier01.
-
This reply was modified 8 years, 1 month ago by
Zapier01.
I think there are no differences between version 1.3.3 and the current one (1.3.6). But, if you insist in downgrading, you can easily do it – just download the version you want from WordPress.org, uninstall the plugin, and upload the ZIP file.
Hi,
OK sure. We will try and feedback.
Thanks!
-
This reply was modified 8 years, 1 month ago by
Zapier01.
-
This reply was modified 8 years, 1 month ago by
Zapier01.
Hi,
Yes you are right. It’s still not working. Now we need to find out what’s wrong π
If it worked at some point, there must be something different (another plugin or theme). Unfortunately, I’m afraid there’s nothing I can do to help you ATM.