I’ve already mentioned this and notified the new owner. Will see if this ever gets fixed.
https://www.ads-software.com/support/topic/bug-cant-change-sermon_images-size/
In our case, I wanted to display a “Series Archive Page” (https://faithcommunitybible.org/series/) and a “Preacher/Speaker Archive Page” (https://faithcommunitybible.org/speakers/). I created two custom pages and added the following:
<?php
$terms = apply_filters( 'sermon-images-get-terms', '', array( 'taxonomy' => 'wpfc_sermon_series' ) );
if ( ! empty( $terms ) ) {
echo '<div class="grid-wrapper archive-wpfc_series">';
foreach( (array) $terms as $term ) {
echo '<div class=""><a href="' . esc_url( get_term_link( $term, $term->taxonomy ) ) . '">' . wp_get_attachment_image( $term->image_id, 'fcbc-medium' ) . '';
echo '<h3>' . sprintf( __( "%s" ), $term->name ) . '</h3></a></div>';
}
echo '</div>';
}
?>
This was for the Series page and we use a custom image size, fcbc-medium
, but any size will work as long as it’s registered.