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

    (@tushar44u)

    hi eduardoteixeira,
    Thanks for using my plugins.

    no i have not resizes the images.
    which shortcode have you used?

    require more help contact me on [email protected].
    Thanks

    Thread Starter eduardoteixeira

    (@eduardoteixeira)

    Hi Tushar,
    I am using [ep_portfolio_category slug=”office-retail” order=”DESC”], what happens is that somehow it generates a thumbnail with its name ended with “-150×150.jpg” which is the image shown on page, as a workaround, I removed that image and renamed the original image to have the -150×150.jpg suffix …

    Plugin Author Tushar Patel

    (@tushar44u)

    Hi eduardoteixeira,
    open file following path easy-portfolio/themes/category_template.php
    and Line Number 32.
    below code are use for thumbnail images.
    <?php echo get_the_post_thumbnail($post->ID, 'thumbnail'); ?>

    you can apply Thumbnail box size use below any 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 ?>
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Change picture size/source’ is closed to new replies.