Viewing 10 replies - 1 through 10 (of 10 total)
  • Plugin Author David Aguilera

    (@davilera)

    Hi Olga!

    I don’t see anything in your functions.php file for printing a featured image; featured images are printed in several different locations (e.g. single.php is one of them), so sharing one file only doesn’t help.

    What them do you use?

    Best,

    Thread Starter OlgaDimetrova

    (@olgadimetrova)

    Well the problem is that that is a premium theme and i’m not allowed to post it here but here it is the single-pin.php

    Single-pin.php

    http://pastebin.com/HEe2etME

    Please help me as i use this theme on 3 projects and i have big problem with the featured image,i can even send you the theme in private and maybe you have a look at this or if you want to help me as freelancer it ok like that as well

    Thank you for your support.
    Kind regards,
    Olga D

    Thread Starter OlgaDimetrova

    (@olgadimetrova)

    The theme that i use it PinClone from pinclone.net

    Plugin Author David Aguilera

    (@davilera)

    Hi Olga,

    Thanks for sharing single.php; it was really helpful. After line 17:

    if (substr($imgsrc[0], -3) != 'gif' && intval($imgsrc[1]) > 800) {
      $imgsrc = wp_get_attachment_image_src( ... );
    }

    add the following:

    if (substr($imgsrc[0], -3) != 'gif' && intval($imgsrc[1]) > 800) {
      $imgsrc = wp_get_attachment_image_src( ... );
    }
    
    if ( '' === $imgsrc[0] ) {
      if ( function_exists( 'uses_nelioefi' ) && uses_nelioefi( $post->ID ) ) {
        $imgsrc = array( nelioefi_get_thumbnail_src( $post->ID ) );
      }//end if
    }//end if

    and that’s it! Let me know if it worked πŸ˜€

    Plugin Author David Aguilera

    (@davilera)

    It’s been two months since Olga’s last reply. Let’s mark this topic as resolved.

    Thread Starter OlgaDimetrova

    (@olgadimetrova)

    Is still not working can i send all the theme files to you , can you give me a contact option

    Plugin Author David Aguilera

    (@davilera)

    Hi Olga.

    OK, send me your theme: customers at nelio software dot com.

    Thread Starter OlgaDimetrova

    (@olgadimetrova)

    I sent you the theme files
    Thank you

    Hello,

    I also have a problem with pinclone, the problem is that clicking on a board to see the pins, shows me pins that are on another board.

    Is there any solution for this?

    Thank you !!!

    Plugin Author David Aguilera

    (@davilera)

    Did you try Nelio Content? In the Advanced Settings section, there’s a few options for adding external featured images; maybe one of them will work with Pinclone.

Viewing 10 replies - 1 through 10 (of 10 total)

The topic ‘Pinclone Theme imges not showing up’ is closed to new replies.