Why are my collection images appearing blurry on my purchased theme?

Hello,

I purchased a theme from template monster for shopify which is meant to work across all platforms. I have worked out the homepage and product images to be clear but I am struggling with the collection images which show blurry. I have tried 2048 x 2048 dimensions some smaller and larger but when it uploads its blurred even though the image is high quality. For example on photoshop I can read the hangtag clearly but when its uploaded you cannot read it at all.

Can anyone help me at all as I am struggling with this so much.

thanks

1 Like

Hello, @slimjim1009

Welcome to the Shopify community!
and Thanks for your Good question.

Please share your site URL,
So I will check and provide a solution here.

It’s www.prettypawfectboutique.co.uk please use ENTER as password as we’re not live just yet.

the products and home page are ok I think but it’s the collections.

the homepage slider does get cut off in mobile view slightly so info on this would be good to

@slimjim1009

can you please provide screenshot further issue

@KetanKumar here is the screenshot of the homepage banner which is cut and not on full view. I’m not sure if some parts have been optiMised to all devices but I wasn’t GiVen any documents regarding the dimensions they need to be to display across all devices

@slimjim1009

Thanks for update

can you please provide product grid or collection this section code

@KetanKumar Could you please let me know where to find this section please as the coding isn’t my strong point

thanks

@KetanKumar This is index-collection-list.liquid

{% case section.settings.img_size %}
{% when ‘small’ %}{%- assign img_size = ‘270x151’ -%}
{% when ‘medium’ %}{%- assign img_size = ‘270x255’ -%}
{% when ‘large’ %}{%- assign img_size = ‘270x360’ -%}
{% endcase %}

{%- assign img_alignment = section.settings.img_alignment -%}

{% if section.settings.section_title.size > 0 %}

{{ section.settings.section_title | escape }}

{% endif %}
{% for block in section.blocks limit: section.blocks.size %}
{%- assign collection = collections[block.settings.item_collection] -%}
{% if collection.empty? %}
{% capture current %}{% cycle 1, 2, 3, 4, 5, 6 %}{% endcapture %} {{ 'collection-' | append: current | placeholder_svg_tag: 'img_placeholder' }}
{{ 'layout.collection_listing.collection' | t }} 100 {{ 'layout.collection_listing.products' | t }}
{% else %} {% include 'collection-listing-item' with img_size %} {% endif %}
{% endfor %}

{% if section.settings.show_view_all %}

{% endif %}

{% schema %}
{
“name”: “Collection list”,
“class”: “section section_homepage section_collection-list”,
“max_blocks”: 12,
“settings”: [
{
“type”: “text”,
“id”: “section_title”,
“label”: “Heading”,
“default”: “Collections”
},
{
“type”: “select”,
“id”: “img_size”,
“label”: “Image size”,
“options”: [
{
“value”: “small”,
“label”: “Small (270x151)”
},
{
“value”: “medium”,
“label”: “Medium (270x255)”
},
{
“value”: “large”,
“label”: “Large (270x360)”
}
]
},
{
“type”: “select”,
“id”: “img_alignment”,
“label”: “Image alignment”,
“options”: [
{
“value”: “top”,
“label”: “Top”
},
{
“value”: “center”,
“label”: “Middle”
},
{
“value”: “bottom”,
“label”: “Bottom”
}
]
},
{
“type”: “select”,
“id”: “text_position”,
“label”: “Text position”,
“options”: [
{
“value”: “normal”,
“label”: “Normal”
},
{
“value”: “overlay”,
“label”: “Overlay”
}
]
},
{
“type”: “checkbox”,
“id”: “show_view_all”,
“label”: “Show ‘View all’ button”
}
],
“blocks”: [
{
“type”: “featured_collection”,
“name”: “Collection”,
“settings”: [
{
“label”: “Collection”,
“id”: “item_collection”,
“type”: “collection”
}
]
}
],
“presets”: [
{
“name”: “Collection list”,
“category”: “Collections”,
“settings”: {

},
“blocks”: [
{
“type”: “featured_collection”
},
{
“type”: “featured_collection”
},
{
“type”: “featured_collection”
},
{
“type”: “featured_collection”
}
]
}
]
}
{% endschema %}

@KetanKumar this code is template-collection.liquid

{%- assign col_img_alignment = section.settings.collection_img_alignment -%}

{% if settings.sidebar_toggle %}
{% case section.settings.collection_img_size %}
{% when ‘small’ %}{%- assign col_img_size = ‘870x191’ -%}
{% when ‘medium’ %}{%- assign col_img_size = ‘870x335’ -%}
{% when ‘large’ %}{%- assign col_img_size = ‘870x446’ -%}
{% endcase %}
{% else %}
{% case section.settings.collection_img_size %}
{% when ‘small’ %}{%- assign col_img_size = ‘1170x258’ -%}
{% when ‘medium’ %}{%- assign col_img_size = ‘1170x450’ -%}
{% when ‘large’ %}{%- assign col_img_size = ‘1170x600’ -%}
{% endcase %}
{% endif %}

{% if collection.image %}
{%- assign col_img = collection.image | img_url: col_img_size, crop: col_img_alignment -%}
{% else %}
{%- assign col_img = ‘’ -%}
{% endif %}

{% case section.settings.listing_style %}
{% when ‘small’ %}
{% case section.settings.product_img_size %}
{% when ‘small’ %}{%- assign product_img_size = ‘195x138’ -%}
{% when ‘medium’ %}{%- assign product_img_size = ‘195x170’ -%}
{% when ‘large’ %}{%- assign product_img_size = ‘195x244’ -%}
{% endcase %}

{% if settings.sidebar_toggle %}
{%- assign item_class = ‘col-sm-3’ -%}
{%- assign layout_type = ‘small_sb’ -%}
{% else %}
{%- assign item_class = ‘col-sm-2’ -%}
{%- assign layout_type = ‘small’ -%}
{% endif %}

{% when ‘medium’ %}
{% case section.settings.product_img_size %}
{% when ‘small’ %}{%- assign product_img_size = ‘270x190’ -%}
{% when ‘medium’ %}{%- assign product_img_size = ‘270x270’ -%}
{% when ‘large’ %}{%- assign product_img_size = ‘270x338’ -%}
{% endcase %}

{% if settings.sidebar_toggle %}
{%- assign item_class = ‘col-sm-4’ -%}
{%- assign layout_type = ‘medium_sb’ -%}
{% else %}
{%- assign item_class = ‘col-sm-3’ -%}
{%- assign layout_type = ‘medium’ -%}
{% endif %}

{% when ‘big’ %}
{% if settings.sidebar_toggle %}
{% case section.settings.product_img_size %}
{% when ‘small’ %}{%- assign product_img_size = ‘420x295’ -%}
{% when ‘medium’ %}{%- assign product_img_size = ‘420x420’ -%}
{% when ‘large’ %}{%- assign product_img_size = ‘420x527’ -%}
{% endcase %}
{%- assign item_class = ‘col-sm-6’ -%}
{%- assign layout_type = ‘big_sb’ -%}

{% else %}
{% case section.settings.product_img_size %}
{% when ‘small’ %}{%- assign product_img_size = ‘370x260’ -%}
{% when ‘medium’ %}{%- assign product_img_size = ‘370x370’ -%}
{% when ‘large’ %}{%- assign product_img_size = ‘370x464’ -%}
{% endcase %}
{%- assign item_class = ‘col-sm-4’ -%}
{%- assign layout_type = ‘big’ -%}

{% endif %}
{% endcase %}

{%- assign product_img_alignment = section.settings.product_img_alignment -%}

{% unless settings.sidebar_toggle %}

{% endunless %} {% if col_img.size > 0 %} {% case section.settings.collection_img_style %} {% when 'collection_img_inline' %}

{{ collection.title }}

{% if section.settings.collection_short_desc_toggle and collection.description.size > 0 %}
{{ collection.description | strip_html | truncate: 150 }}
{% endif %}

{% when ‘collection_img_overlay’ %}

{{ collection.title }}

{% if section.settings.collection_short_desc_toggle and collection.description.size > 0 %}
{{ collection.description | strip_html | truncate: 130 }}
{% endif %}

{% when ‘none’ %}

{{ collection.title }}

{% if section.settings.collection_short_desc_toggle and collection.description.size > 0 %}
{{ collection.description | strip_html | truncate: 130 }}
{% endif %}

{% endcase %}
{% else %}

{{ collection.title }}

{% if section.settings.collection_short_desc_toggle and collection.description.size > 0 %}
{{ collection.description | strip_html | truncate: 130 }}
{% endif %}

{% endif %}
{% unless settings.sidebar_toggle %}

{% endunless %}

{% unless settings.sidebar_toggle %}

{% endunless %}

{% if section.settings.collection_desc_toggle and collection.description.size > 0 %}

{{ collection.description }}
{% endif %}

{% if section.settings.collection_tags_toggle and collection.all_tags.size > 0 %}

{% endif %}
{{ 'layout.collection.sort_products' | t }}:
{{ 'layout.collection.products_number' | t }}:
{{ collection.all_products_count }} {{ 'layout.product.items' | t }}

{% if template == ‘collection’ %}
{% assign paginate_by = productsNumber %}
{% comment %}{% assign paginate_by = 3 %}{% endcomment %}
{% else %}
{% assign paginate_by = template | replace: ‘collection.’ %}
{% endif %}

{% paginate collection.products by paginate_by %}

{% for product in collection.products %}
{% include 'product-listing-item' img_size: product_img_size, img_alignment: product_img_alignment %}
{% endfor %}

{% if section.settings.pagination_type == ‘default’ %}
{% assign pagination_items = ‘layout.pagination.products’ | t %}
{% include ‘snippet-pagination’ with pagination_items %}
{% else %}
{% if paginate.pages > 1 %}

{%- assign pages_difference = paginate.pages | minus: paginate.current_page -%}

{{ ‘layout.pagination.more_button’ | t }}

{{ paginate.current_page }}

{% endif %} {% endif %}

{% endpaginate %}

{% unless settings.sidebar_toggle %}

{% endunless %}

{% schema %}
{
“name”: “Collection page”,
“class”: “section_template section_template__collection”,
“settings”: [
{
“type”: “select”,
“id”: “listing_style”,
“label”: “Listing style”,
“default”: “medium”,
“options”: [
{
“value”: “small”,
“label”: “Small”
},
{
“value”: “medium”,
“label”: “Medium”
},
{
“value”: “big”,
“label”: “Big”
}
]
},
{
“type”: “select”,
“id”: “pagination_type”,
“label”: “Pagination type”,
“default”: “default”,
“options”: [
{
“value”: “default”,
“label”: “Default”
},
{
“value”: “load_more”,
“label”: “Load more”
}
]
},
// COLLECTION IMAGE ///////////////////////////////////////////////////////////////////////////////
{
“type”: “header”,
“content”: “Collection image”
},
{
“type”: “select”,
“id”: “collection_img_style”,
“label”: “Collection image style”,
“default”: “collection_img_inline”,
“options”: [
{
“value”: “none”,
“label”: “None”
},
{
“value”: “collection_img_inline”,
“label”: “Collection image: inline”
},
{
“value”: “collection_img_overlay”,
“label”: “Collection image: overlay”
}
]
},
{
“type”: “select”,
“id”: “collection_img_size”,
“label”: “Collection image size”,
“default”: “small”,
“options”: [
{
“value”: “small”,
“label”: “Small”
},
{
“value”: “medium”,
“label”: “Medium”
},
{
“value”: “large”,
“label”: “Large”
}
]
},
{
“type”: “select”,
“id”: “collection_img_alignment”,
“label”: “Collection image alignment”,
“default”: “center”,
“options”: [
{
“value”: “top”,
“label”: “Top”
},
{
“value”: “center”,
“label”: “Middle”
},
{
“value”: “bottom”,
“label”: “Bottom”
}
]
},

// COLLECTION SETTINGS ////////////////////////////////////////////////////////////////////////////
{
“type”: “header”,
“content”: “Collection settings”
},
{
“type”: “checkbox”,
“id”: “collection_short_desc_toggle”,
“label”: “Collection short description”
},
{
“type”: “checkbox”,
“id”: “collection_desc_toggle”,
“label”: “Collection description”
},
{
“type”: “checkbox”,
“id”: “collection_tags_toggle”,
“label”: “Show tags”
},

// PRODUCT LISTING ////////////////////////////////////////////////////////////////////////////////
{
“type”: “header”,
“content”: “Product listing”
},
{
“type”: “select”,
“id”: “product_img_size”,
“label”: “Product image size”,
“default”: “medium”,
“options”: [
{
“value”: “small”,
“label”: “Small”
},
{
“value”: “medium”,
“label”: “Medium”
},
{
“value”: “large”,
“label”: “Large”
}
]
},
{
“type”: “select”,
“id”: “product_img_alignment”,
“label”: “Product image alignment”,
“default”: “center”,
“options”: [
{
“value”: “top”,
“label”: “Top”
},
{
“value”: “center”,
“label”: “Middle”
},
{
“value”: “bottom”,
“label”: “Bottom”
}
]
}
]
}
{% endschema %}

{% javascript %}
jQuery(document).ready(function($) {

// LOAD COLLECTION CONTENT
// when loading a page, we compare the value from the cookie and load the content onto the page
if( theme.paginationTypeLoad && theme.collectionName.length > 0 ){
var collectionUrlCookie = $.cookie(theme.collectionName);
if( collectionUrlCookie ){ // if there is a cookie, if there is a search in the URL and there is a page in the search

if ( document.location.search.indexOf(‘page=’) != -1 ){
var urlPage = document.location.search.match(/?page=\d{1,3}/)[0];
var reloadUrl = document.location.href.replace(/?page=\d{1,3}/, collectionUrlCookie);

if( urlPage != collectionUrlCookie ){
// reloading to the page with the replacement of the page number by the number from the cookie
document.location.href = reloadUrl;
}
}

}
}

// PRODUCTS VIEW GRID/LIST
if ( typeof $.cookie(‘productSortView’) == ‘undefined’ ) {
$.cookie(‘productSortView’, ‘grid’, {path: ‘/’});
}
else if ( $.cookie(‘productSortView’) == ‘list’ ) {
$(‘#view_grid’).removeClass(‘active’);
$(‘#view_list’).addClass(‘active’);

$(‘#product_listing__sorted’).addClass(‘product_listing__list’);

};

$(‘#view_grid, #view_list’).on(‘click’, function() {
var thisView = $(this).data(‘view’);

$(‘#view_grid, #view_list’).removeClass(‘active’);
$(‘#product_listing__sorted’).removeClass(‘product_listing__list product_listing__grid’);

$(this).addClass(‘active’);

$.cookie(‘productSortView’, thisView, {path: ‘/’});
$(‘#product_listing__sorted’).addClass( ‘product_listing__’ + thisView );

});

// PRODUCTS NUMBER
$(‘#products_number_select option[value=’ + theme.productNumber + ‘]’).prop(‘selected’, ‘true’);

$(‘#products_number_select’).on(‘change’, function() {
if (document.location.pathname.indexOf(‘types’) > 0 || document.location.pathname.indexOf(‘vendors’) > 0 && document.location.search.indexOf(‘page’) < 0) {
var productSortQuery = document.location.origin + document.location.pathname + document.location.search + ‘&page=1&sort_by=’ + $(‘#sort_by_select’).val() + ‘&view=’ + $(this).val();
} else if (document.location.pathname.indexOf(‘types’) > 0 || document.location.pathname.indexOf(‘vendors’) > 0 && document.location.search.indexOf(‘page’) > 0) {
var productSortQuery = document.location.origin + document.location.pathname + document.location.search.slice(0, document.location.search.indexOf(‘&’) + 1) + ‘?page=1&sort_by=’ + $(‘#sort_by_select’).val() + ‘&view=’ + $(this).val();
} else {
var productSortQuery = document.location.origin + document.location.pathname + ‘?page=1&sort_by=’ + $(‘#sort_by_select’).val() + ‘&view=’ + $(this).val();
}
document.location.href = productSortQuery;
});

// PRODUCTS SORTING
$(‘#sort_by_select option’).each(function() {
if ( document.location.href.indexOf( $(this).prop(‘value’) ) != -1 ) {
$(this).prop(‘selected’, ‘selected’);
};

});

$(‘#sort_by_select’).on(‘change’, function() {
if (document.location.pathname.indexOf(‘types’) > 0 || document.location.pathname.indexOf(‘vendors’) > 0 && document.location.search.indexOf(‘page’) < 0) {
var productSortQuery = document.location.origin + document.location.pathname + document.location.search + ‘?page=1&sort_by=’ + $(this).val() + ‘&view=’ + theme.productNumber;
} else if (document.location.pathname.indexOf(‘types’) > 0 || document.location.pathname.indexOf(‘vendors’) > 0 && document.location.search.indexOf(‘page’) > 0) {
var productSortQuery = document.location.origin + document.location.pathname + document.location.search.slice(0, document.location.search.indexOf(‘&’) + 1) + ‘?page=1&sort_by=’ + $(this).val() + ‘&view=’ + theme.productNumber;
} else {
var productSortQuery = document.location.origin + document.location.pathname + ‘?page=1&sort_by=’ + $(this).val() + ‘&view=’ + theme.productNumber;
}

document.location.href = productSortQuery;
});

// LOAD MORE STYLE PAGINATION
if( theme.paginationTypeLoad ){
var current_page = theme.paginationCurrent;
var pageFirstArrow = $(‘#page_navigation_prev_prev’);
var pageLastArrow = $(‘#page_navigation_next_next’);
var pagePrevArrow = $(‘#page_navigation_prev’);
var pageNextArrow = $(‘#page_navigation_next’);
var pageCurrentLabel = $(‘#page_navigation_current’);

// LOAD MORE BUTTON
$(‘#load_more_button’).on(‘click’, function() { // when clicking on the button the load is replaced in the URL of the page number on the +1
var currentUrl = document.location.href; // and load into a container

if (document.location.href.indexOf(‘page=’) > 0 ) {
var newUrl = currentUrl.replace(/?page=\d{1,3}/, ‘?page=’ + (current_page + 1));
} else {
if (document.location.search.length > 0 ) {
var newUrl = currentUrl +‘&page=’ + (current_page + 1);
} else {
var newUrl = currentUrl +‘?page=’ + (current_page + 1);
}
}

var tempDiv = document.createElement(‘div’); // create a temporary block in which we load content from url
tempDiv.setAttribute(‘style’, ‘display: none;’);
tempDiv.id = ‘further_loaded_content’;

$(‘#product_listing__sorted’).addClass(‘loader_on’); // preloader on

$(tempDiv).load( newUrl + ’ #product_listing__sorted> *‘, function(){ // add content from the diva to the end of the listing
$(’#product_listing__sorted’).append( $(tempDiv).html() ).removeClass(‘loader_on’);
tempDiv.remove(); // remove the temporary div

});
current_page ++; // increase the page count by 1

showHideLoadMoreButton(current_page);

$.cookie(theme.collectionName, ‘?page=’ + current_page , {path: ‘/’}); // set cookie with the modified page

redefinitionPagination(current_page); // reloading pagination
return current_page; // return the number of the current page

});

// SHOW/HIDE LOAD MORE BUTTON
var showHideLoadMoreButton = function(page){ // if the page is the last one we hid the button
if( page == theme.paginatePages ){
$(‘#load_more_button’).addClass(‘hidden’);
} else {
if( $(‘#load_more_button’).hasClass(‘hidden’) ){
$(‘#load_more_button’).removeClass(‘hidden’);
}
}
};

// PAGINATION FOR LOAD MORE
var checkStateOfPagination = function(page){
if ( page > 1 && pageFirstArrow.hasClass(‘hidden’) ){pageFirstArrow.removeClass(‘hidden’);}; // Here we hide the arrows at the extreme values of pagination
if ( page == 1 && !(pageFirstArrow.hasClass(‘hidden’)) ){pageFirstArrow.addClass(‘hidden’);};
if ( page > 2 && pagePrevArrow.hasClass(‘hidden’) ){pagePrevArrow.removeClass(‘hidden’);};
if ( page <= 2 && !(pagePrevArrow.hasClass(‘hidden’)) ){pagePrevArrow.addClass(‘hidden’);};

if ( (theme.paginatePages - page) <= 1 && !(pageNextArrow.hasClass(‘hidden’)) ){
pageNextArrow.addClass(‘hidden’);
};
if ( (theme.paginatePages - page) == 0 && !(pageLastArrow.hasClass(‘hidden’)) ){
pageLastArrow.addClass(‘hidden’);
};
if ( (theme.paginatePages - page) > 0 && pageLastArrow.hasClass(‘hidden’) ) {
pageLastArrow.removeClass(‘hidden’);
};
if ( (theme.paginatePages - page) > 1 && pageNextArrow.hasClass(‘hidden’) ) {
pageNextArrow.removeClass(‘hidden’);
};
};

var redefinitionPagination = function(page){ // pagination loading function, gets the page number argument
pageCurrentLabel.html(page);
checkStateOfPagination(page);
};

// ADD EVENT ON PAGINATION BUTTON // add events to the pagination buttons
pageFirstArrow.on(‘click’, function(e) {
if ( document.location.search.indexOf(‘page=’) != -1 ){
var newPageUrl = document.location.href.replace(/?page=\d{1,3}/, ‘?page=1’);
} else {
var newPageUrl = document.location.href + ‘?page=1’;
}
$.cookie(theme.collectionName, ‘?page=1’, {path: ‘/’});
document.location.href = newPageUrl;
});

pageLastArrow.on(‘click’, function(e) {
if ( document.location.search.indexOf(‘page=’) != -1 ){
var newPageUrl = document.location.href.replace(/?page=\d{1,3}/, ‘?page=’ + theme.paginatePages);
} else {
var newPageUrl = document.location.href + ‘?page=’ + theme.paginatePages;
}
$.cookie(theme.collectionName, ‘?page=’ + theme.paginatePages, {path: ‘/’});
document.location.href = newPageUrl;
});

pagePrevArrow.on(‘click’, function(e) {
if ( document.location.search.indexOf(‘page=’) != -1 ){
var newPageUrl = document.location.href.replace(/?page=\d{1,3}/, ‘?page=’ + ( current_page - 1 ));
} else {
var newPageUrl = document.location.href + ‘?page=’ + ( current_page - 1 );
}
$.cookie(theme.collectionName, ‘?page=’ + ( current_page - 1 ), {path: ‘/’});
document.location.href = newPageUrl;
});

pageNextArrow.on(‘click’, function(e) {
if ( document.location.search.indexOf(‘page=’) != -1 ){
var newPageUrl = document.location.href.replace(/?page=\d{1,3}/, ‘?page=’ + ( current_page + 1 ));
} else {
var newPageUrl = document.location.href + ‘?page=’ + ( current_page + 1 );
}
$.cookie(theme.collectionName, ‘?page=’ + ( current_page + 1 ), {path: ‘/’});
document.location.href = newPageUrl;
});

redefinitionPagination( current_page ); // call the function when the page loads

};

});
{% endjavascript %}

@KetanKumar and this is template-collections-listing.liquid

{% case section.settings.img_size %}
{% when ‘small’ %}{%- assign img_size = ‘480x360’ -%}
{% when ‘medium’ %}{%- assign img_size = ‘370x258’ -%}
{% when ‘large’ %}{%- assign img_size = ‘370x360’ -%}
{% endcase %}

{%- assign img_alignment = section.settings.img_alignment -%}

{{ page_title }}

{% for collection in collections %}
{%- assign new_coll_img = false -%} {%- assign new_img_url = '' -%} {% for block in section.blocks %} {% if block.settings.item_collection == collection.handle and block.settings.collection_image %} {%- assign new_coll_img = true -%} {%- assign new_img_url = block.settings.collection_image -%} {% endif %} {% endfor %} {% include 'collection-listing-item' with img_size, new_coll_img, new_img_url %}
{% endfor %}

{% schema %}
{
“name”: “Collection listing”,
“class”: “section_template section_template__collections-listing”,
“settings”: [
{
“type”: “select”,
“id”: “img_size”,
“label”: “Image size”,
“options”: [
{
“value”: “small”,
“label”: “Small (370x202)”
},
{
“value”: “medium”,
“label”: “Medium (370x258)”
},
{
“value”: “large”,
“label”: “Large (370x360)”
}
]
},
{
“type”: “select”,
“id”: “img_alignment”,
“label”: “Image alignment”,
“options”: [
{
“value”: “top”,
“label”: “Top”
},
{
“value”: “center”,
“label”: “Middle”
},
{
“value”: “bottom”,
“label”: “Bottom”
}
]
},
{
“type”: “select”,
“id”: “text_position”,
“label”: “Text position”,
“options”: [
{
“value”: “normal”,
“label”: “Normal”
},
{
“value”: “overlay”,
“label”: “Overlay”
}
]
}
],
“blocks”: [
{
“type”: “img_collection”,
“name”: “New Collection Image”,
“settings”: [
{
“type”: “collection”,
“label”: “Collection”,
“id”: “item_collection”
},
{
“type”: “image_picker”,
“id”: “collection_image”,
“label”: “Collection image”
}
]
}
]
}
{% endschema %}

@slimjim1009

Thanks for code

can you please give me this file code

{% include 'collection-listing-item' with img_size %}

@KetanKumar which section would this likely be included in?

ill give the details when I get to a pc

@slimjim1009

Yes, please send PM