I don’t know why… would you guys please help? this is my code.. i think everything is fine..but i don’t know why.
{% assign current_product = product.selected_or_first_available_variant %}
{% assign product_image = current_product.featured_image | default: product.featured_image %}
![{{ product_image.alt }}]()
{% for image in product.images %}
![{{ image.alt }}]()
{% endfor %}
{% form 'product', product, class:"product-form", id:"AddToCartForm" %}
{% for block in section.blocks %}
{% case block.type %}
{% when 'title' %}
{{ product.title }}
{% when 'price' %}
{{ current_product.price | money_with_currency }}
{% when 'variant_selector' %}
Size
{% when 'quantity' %}
Quantity
{% when 'checkout_buttons' %}
Add To Cart
{% if section.settings.dynamic_buttons_checkbox == true %}
{{ form | payment_button }}
{% endif %}
{% when ‘description’ %}
{{ product.description }}
{% else %}
{% endcase %}
{% endfor %}
{% endform %}
{% schema %}
{
“name”: “Product”,
“settings”: [
{
“type”: “checkbox”,
“id”: “dynamic_buttons_checkbox”,
“label”: “Enable Dynamic Buttons”,
“default”: false
}
],
“blocks”: [
{
“type”: “title”,
“name”: “Title”,
“limit”: 1
},
{
“type”: “price”,
“name”: “Price”,
“limit”: 1
},
{
“type”: “variant_selector”,
“name”: “Variant Selector”,
“limit”: 1
},
{
“type”: “quantity”,
“name”: “Quantity”,
“limit”: 1
},
{
“type”: “checkout_buttons”,
“name”: “Checkout Buttons”,
“limit”: 1
},
{
“type”: “description”,
“name”: “Description”,
“limit”: 1
}
]
}
{% endschema %}
@cenesis421
Sorry you are facing this issue, it would be my pleasure to help you.
Welcome to the Shopify community! 
Thanks for your good question.
Please share your site URL,
I will check out the issue and provide you a solution here.
Hi @cenesis421 ,
I checked the code you sent and didn’t find the code related to image collection, are you trying to show it here?
Please explain more about it, I will help you to change it
https://github.com/cenesis42/shopify1.github.io
This is my whole code. I have no idea which one is wrong or not..
can you help me?
also it should have showed the pagination at blog pages.
but there is no blog page.. can you help?
https://github.com/cenesis42/shopify1.github.io
this is my github.
i didn’t pay it yet .. so URL is not working yet. I am just practicing.
Hi @cenesis421 ,
You can use following code to display collection image at product page:
Hope it helps!