• Resolved alejodec

    (@alejodec)


    Hi, sorry for my English, I use google translator.
    Thanks for the excellent plugin.

    I have the following problem:
    Use “External Nelio Featured Image” on the post which automatically generates thumbnail (I have no outstanding image (futured image)).
    When I enter search on Dave’s not showing thumbnail image of the post, could you help me?

    Since already very grateful.

    https://wordpress.org/plugins/daves-wordpress-live-search/

Viewing 1 replies (of 1 total)
  • Thread Starter alejodec

    (@alejodec)

    The author of “External Nelio Featured Image” has solved my problem immediately (excellent support) adding in my functions.php:

    add_filter( "dwls_attachment_thumbnail", "use_nelio_ext_fi", 10, 1 );
    function use_nelio_ext_fi( $old_featured_image ) {
       global $post;
       $image_url = get_post_meta( $post->ID, '_nelioefi_url', true );
       if ( $image_url && strlen( $image_url ) > 0 )
          return $image_url;
       else
          return $old_featured_image;
    }

    Regards

Viewing 1 replies (of 1 total)
  • The topic ‘Problem with image from url’ is closed to new replies.