Viewing 1 replies (of 1 total)
  • Plugin Author Tushar Patel

    (@tushar44u)

    Hello Bill Setzer,

    Thanks for using my plugin.

    This Below code are use for display Thumbnail box, in themes\default_template.php change this code:

    <?php echo get_the_post_thumbnail($post->ID, 'thumbnail'); ?>

    you have use any thumbnail code.

    <?php echo get_the_post_thumbnail($post->ID, 'thumbnail'); // Thumbnail ?>
    <?php echo get_the_post_thumbnail($post->ID, 'medium'); // Medium resolution?>
    <?php echo get_the_post_thumbnail($post->ID, 'large'); // Large resolution?>
    <?php echo get_the_post_thumbnail($post->ID, 'full'); // Full resolution ?>
    <?php echo get_the_post_thumbnail($post->ID, array(100,100)); // custom resolution means 100X100 ?>

    For Remove the overlay and links.

    In themes\default_template.php file find below code you can comment/remove below code for overlay and links .

    <div class="ep_portfoliourl">
    					<div class="ep_portfoliourl_wrap">
                            <div class="ep_portfoliourl_cont">
                            <h4 class="item_title"><?php the_title(); ?></h4>
                                <div class="item_more">
                                 <span><a class="zoom" target="_blank" href="<?php echo $imgsrc[0]; ?>" rel="prettyPhoto[portfolio]"></a></span>
                                 <span><a class="link_post" href="<?php echo get_permalink($post->ID); ?>"></a></span>
                               </div>
                            </div>
                        </div>
                   </div>

    more help contact me on [email protected].
    Thanks and regards
    Tushar Patel

Viewing 1 replies (of 1 total)
  • The topic ‘Thumbnails distorted can I remove thumbnail links?’ is closed to new replies.