Hi
Add this to your child theme’s functions.php file:
/* THEME SETUP
================================================== */
if (!function_exists('sf_dante_setup')) {
function sf_dante_setup() {
/* THEME SUPPORT
================================================== */
add_theme_support( 'structured-post-formats', array('audio', 'gallery', 'image', 'link', 'video') );
add_theme_support( 'post-formats', array('aside', 'chat', 'quote', 'status') );
add_theme_support( 'automatic-feed-links' );
add_theme_support( 'post-thumbnails' );
add_theme_support( 'woocommerce' );
/* THUMBNAIL SIZES
================================================== */
set_post_thumbnail_size( 220, 150, true);
add_image_size( 'widget-image', 94, 70, true);
add_image_size( 'thumb-square', 250, 250, true);
add_image_size( 'thumb-image', 600, 450, true);
add_image_size( 'thumb-image-twocol', 900, 675, true);
add_image_size( 'thumb-image-onecol', 1800, 1200, true);
add_image_size( 'blog-image', 1280, 9999);
add_image_size( 'full-width-image-gallery', 1280, 720, true);
/* CONTENT WIDTH
================================================== */
if ( ! isset( $content_width ) ) $content_width = 1140;
/* LOAD THEME LANGUAGE
================================================== */
load_theme_textdomain('swiftframework', SF_TEMPLATE_PATH.'/language');
}
add_action( 'after_setup_theme', 'sf_dante_setup' );
}
and change
add_image_size( 'full-width-image-gallery', 1280, 720, true);
to
add_image_size( 'full-width-image-gallery', 1280, null, true);
– Kyle