Support » Plugin: Automatic Youtube Video Posts Plugin » How to get video thumbnails to show up on main page with Woothemes BoldNews?

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author ternstyle

    (@mpraetzel)

    The thumbnails will appear automatically wherever the_post_thumbnail is used.

    I faced same issue .I have used Suffusion theme. My homepage was configured for Tile format data and it was not showing thumbnails.
    There was one more bug in layout-tiles.php file. “.$topmost.” was not added as php variable.

    I made changes in file
    wp-content/themes/suffusion/layouts/layout-tiles.php

    Modify the code as below mentioned in bold characters.
    $show_image = tern_wp_youtube_thumb();
    $show_image = isset($show_image) ? $show_image : (($suf_tile_images_enabled == ‘show’) || ($suf_tile_images_enabled == ‘hide-empty’ && $image_link != ”));
    $topmost = ‘suf-tile-topmost’;
    if ($show_image) {
    echo “\t\t<div class=’suf-tile-image ‘”.$topmost.”‘>”.$image_link.”</div>\n”;
    $topmost = ”;
    }

    Plugin Author ternstyle

    (@mpraetzel)

    the use of the following function will display the images manually wherever it’s placed:

    <?php tern_wp_youtube_thumb(); ?>

    @mpraetzel,

    Where exactly does that code go?

    this code: <?php tern_wp_youtube_thumb(); ?>

    On my website in some file or on the plugin edit areas? Please be specific as I am a novice lol. Thanks b

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘How to get video thumbnails to show up on main page with Woothemes BoldNews?’ is closed to new replies.