I have Created a Custom Section and want to use it in 'Product Information' Section on product temp

Topic summary

A user has created a custom Shopify Liquid section to display alternate product color options and needs help implementing it within the Product Information section of their product template.

Custom Section Details:

  • Named “Product Alternate Colors”
  • Uses blocks to add product handles
  • Displays “Also Available In:” with linked product images (90x90px)
  • Shows “No alternate colors available” when no blocks are added
  • Inspired by existing functionality on another store

Implementation Question:
The user is asking how to integrate this custom section as a block within the theme’s Product Information section on the product template page.

Status: The question remains unanswered with no responses or solutions provided yet.

Summarized with AI on November 8. AI used: claude-sonnet-4-5-20250929.

{% comment %}
This is a Shopify Liquid section for displaying alternate color options for a product.
{% endcomment %}

{% schema %}
{
“name”: “Product Alternate Colors”,
“settings”: ,
“blocks”: [
{
“type”: “product_handle”,
“name”: “Product Handle”,
“settings”: [
{
“type”: “product”,
“id”: “product”,
“label”: “Product”
}
]
}
],
“presets”: [
{
“name”: “Product Alternative Colors”,
“category”: “Product”
}
]
}
{% endschema %}

Also Available In:

{% for block in section.blocks %} {% assign product = all_products[block.settings.product] %}

{% if product %}

<img
src=“{{ product.featured_image | image_url: ‘90x90’ }}”
alt=“{{ product.title }}”
width=“90”
height=“90”
style=“margin-left: 5px; border: 1px solid #264a5d;”

{% endif %} {% endfor %}

{% if section.blocks.size == 0 %}

No alternate colors available.

{% endif %}

Above is the custom code for the desired (Also available in: block in the product information section of product template)section and got inspiration from this:- https://thecaistore.com/products/peach-cushy-thong-heels?variant=41027345252434

Can anyone help me? How to Implement this?? I’m using dawn theme.