Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Nelio Software

    (@nelio)

    Hi Wesleyding,

    First of all, thanks for using our plugin! Here’s what you have to do. Go to your WordPress Dashboard ? Appearance ? Editor, and edit the file functions.php of your theme. There, you have to locate the line 251:

    249: if (!function_exists('mh_featured_image')) {
    250:   function mh_featured_image() {
    251:     global $post, $options;
    252:     if (has_post_thumbnail() && !is_attachment()) {

    Between lines 251 and 252, add the following code*:

    if ( function_exists( 'uses_nelioefi' ) && uses_nelioefi( $post->ID ) ) {
      echo "\n" . '<div class="post-thumbnail">' . "\n";
      echo get_the_post_thumbnail( $post->ID, array(640,320) );
      echo '</div>' . "\n";
      return;
    }

    This should do the trick! Please, let us know if it worked.

    * Remember that editing the source code of your WordPress theme or plugin files might result in a white screen. Make sure you create a backup of your installation before any edition and write the code properly (don’t miss any character).

    Thread Starter wesleyding

    (@wesleyding)

    It worked –?thanks a lot!

    Plugin Author Nelio Software

    (@nelio)

    Glad to hear! Enjoy our plugin! And, please, don’t forget to rate/comment it, if you haven’t done it yet ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Pics not showing on post page.’ is closed to new replies.