Hi,
I have added a patch to the Swift Framework plugin, this patch contains WordPress filters for each team image size. I’ll submit this patch so it’s within the next page builder update.
Then in your child theme, I have included the function to override these filters (the standard image width x height).
function sf_override_spb_team_img_width_default() {
return '600';
}
add_filter( 'spb_team_img_width_default', 'sf_override_spb_team_img_width_default' );
function sf_override_spb_team_img_height_default() {
return '600';
}
add_filter( 'spb_team_img_height_default', 'sf_override_spb_team_img_height_default' );