Do you know which plugin file is this found in so I can edit it? I can’t locate it.
Open up the Sermon Manager plugin folder and you’ll see a folder called views
. That is where your archive and single sermon files are located. You really don’t want to edit those. Inside of that views
folder you’ll see a folder called partials
. Click on that and the one you want, based on the link you posted, will be called content-sermon-single.php
. Find this:
<div class="wpfc-sermon-single-image">
<img class="wpfc-sermon-single-image-img" alt="<?php the_title(); ?>"
src="<?php echo get_sermon_image_url(); ?>">
</div>
You want to remove this <img class="wpfc-sermon-single-image-img" alt="<?php the_title(); ?>" src="<?php echo get_sermon_image_url(); ?>">
and use this instead <?php render_sermon_image( 'thumbnail' ); ?>
.
If you’ve added a custom image, you can use it by editing the image size. You can use this to add custom image sizes: https://www.ads-software.com/plugins/simple-image-sizes/
Hope this helps!