title picture of blog article incorrect

Discussion in 'GoldenEagle WordPress Theme' started by totr_de, Jul 21, 2013.

Thread Status:
Not open for further replies.
  1. totr_de

    totr_de Member

    Joined:
    Apr 20, 2012
    Messages:
    31
    Likes Received:
    0
    Location:
    Mainz, Germany
    Hi there,

    I created a blog post today and selected a title picture for it that does not appear in the article itself.
    Now, if I check out my blog page at "http://www.talesoftheroad.de/blog/" the correct title picture is shown. However, on the home page "http://www.talesoftheroad.de", where an overview of the three latest blog article is provided under "latest stories", the title picture of my todays article is incorrect. It is the first picture from the article but it should be the one I explicitely selected as title picture.

    Why are two different pictures shown on the different pages, and how to solve this?

    Thanks,
    Stephan

    P.S.: I am using the pro-version of GoldenEagle
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Go to front-page.php present in your theme directory and replace the current code

    Code:
    <?php inkthemes_get_image(65, 60); ?>
    with code given below

    Code:
    <?php if ((function_exists('has_post_thumbnail')) && (has_post_thumbnail())) { ?>
                            <?php inkthemes_get_thumbnail(65, 60); ?>
                        <?php } else { ?>
                            <?php inkthemes_get_image(65, 60); ?>
                            <?php
                        }
                        ?>    

    Sending image for reference

    2013-07-22_1210.png


    This will solve your issue.
     
  3. totr_de

    totr_de Member

    Joined:
    Apr 20, 2012
    Messages:
    31
    Likes Received:
    0
    Location:
    Mainz, Germany
    This seems to work. Thank you so much!
    Problem solved.

    Cheers, Stephan
     
Thread Status:
Not open for further replies.

Share This Page