Hello @Lunix_I , The code I provided earlier was just HTML. To make the service section dynamic and manageable via Shopify, please try this Liquid code:
{% for service in section.settings.services %}
{% if service.image != blank %}
{% endif %}
### {{ service.title }}
{{ service.description }}
{% endfor %}
Implementation Instructions:
-
Create a New Section: In your Shopify theme, go to the Sections directory and create a new file named service-section.liquid.
-
Insert the Code: Copy the Liquid code provided above into the new file.
-
Add to Your Theme: You can include this section in your desired template by using the following Liquid tag:
{% section 'service-section' %}
This setup will allow you to manage the services directly from the Shopify admin panel, where you can easily add, remove, or update service items.
If you have any further questions or need additional assistance, feel free to ask!