Decryption Text of Collection Page is NOT SHOWING!

hello everyone. The issue I have is addressed and solved many times. But i can’t find the solution that works on my theme. I am using the theme (MINIMOG v3.0.2 (11/13) - Vogue) for my site (hotleatherjacket.com) and the description text is not showing on any collection page . Kindly anyone could help me to resolve this issue. Also I want the text to show on bottom.

Thanks.

my collection-list-template.liquid code looks like this.

{% assign settings = section.settings %}

{%- if settings.title != blank -%}

{{ settings.title }}

{%- endif -%} {%- if settings.description != blank -%}
{{ settings.description }}
{%- endif -%}
{% if section.settings.display_type == 'all' %} {% for collection in collections %} {% render 'collection-card', section: section, collection: collection, card_style: 'standard', text_alignment: 'center', image: collection.image, show_product_count: false, hover_effect: 'scaling-up', title: collection.title %} {% endfor %} {% else %} {% for block in section.blocks %} {% liquid assign settings = block.settings assign collection = collections[settings.collection] assign featuredImage = collection.image

if block.settings.image != blank
assign featuredImage = block.settings.image
endif
%}
{% render ‘collection-card’, section: section, collection: collection, card_style: ‘standard’, text_alignment: ‘center’, image: featuredImage, show_product_count: false, hover_effect: ‘scaling-up’, title: collection.title %}
{% endfor %}
{% endif %}

{% schema %}
{
“name”: “Collections list page”,
“settings”: [
{
“type”: “paragraph”,
“content”: {
“cs”: “Seznam ve výchozím nastavení obsahuje všechny vaše kolekce. Pokud ho chcete přizpůsobit, zvolte možnost Vybrané a přidejte požadované kolekce.”,
“da”: “Alle dine kollektioner vises som standard. Hvis du vil tilpasse din liste, skal du vælge "Valgte" og tilføje kollektioner.”,
“de”: “Alle Kategorien sind automatisch gelistet. Zum Ändern der Liste wählen Sie ‘Ausgewählt’ und fügen Sie Kategorien hinzu.”,
“en”: “All of your collections are listed by default. To customize your list, choose ‘Selected’ and add collections.”,
“es”: “Todas tus colecciones están enlistadas por defecto. Para personalizar tu lista, elige ‘Seleccionadas’ y agrega colecciones.”,
“fi”: “Kaikki kokoelmasi näkyvät oletuksena. Voit mukauttaa luetteloa napauttamalla "Valittu" ja lisäämällä kokoelmia.”,
“fr”: “Toutes vos collections sont listées par défaut. Pour personaliser votre liste, cliquez sur « Sélection » et ajoutez des collections.”,
“it”: “Tutte le tue collezioni vengono elencate per impostazione predefinita. Per personalizzare il tuo elenco, scegli "Selezionato" e aggiungi delle collezioni.”,
“ja”: “すべてのコレクションがデフォルトで一覧表示されます。一覧をカスタマイズするには、「選択済み」を選択してコレクションを追加します。”,
“ko”: “모든 콜렉션이 기본으로 나열됩니다. 목록을 사용자 지정하려면 '선택’을 선택하고 컬렉션을 추가하십시오.”,
“nb”: “Alle samlingene dine vises som standard. For å tilpasse listen, velg «Valgte» og legg til samlinger.”,
“nl”: “Standaard worden al je collecties weergegeven. Kies Geselecteerd en voeg collecties toe om de lijst aan te passen.”,
“pl”: “Domyślnie wyświetlana jest lista wszystkich Twoich kolekcji. Aby dostosować listę, wybierz opcję „Wybrane” i dodaj kolekcje.”,
“pt-BR”: “Todas as suas coleções são listadas por padrão. Para personalizar sua lista, escolha "Selecionado" e adicione coleções.”,
“pt-PT”: “Todas as suas coleções são listadas por predefinição. Para personalizar a sua lista, escolha "Selecionado" e adicione coleções.”,
“sv”: “Alla dina kollektioner är listade som standard. För att anpassa din lista väljer du "Vald" och lägger till kollektioner.”,
“th”: “มีการระบุคอลเลกชันทั้งหมดของคุณไว้เป็นค่าเริ่มต้น หากต้องการปรับแต่งรายการของคุณ ให้เลือก ‘ที่เลือก’ แล้วเพิ่มคอลเลกชัน”,
“tr”: “Varsayılan olarak koleksiyonlarınızın tümü gösterilir. Listenizi özelleştirmek için "Seçilen" seçeneğini belirleyin ve koleksiyonlarınızı ekleyin.”,
“vi”: “Tất cả bộ sưu tập của bạn được liệt kê theo mặc định. Để tùy chỉnh danh sách, chọn "Đã chọn" và thêm bộ sưu tập.”,
“zh-CN”: “默认情况下列出您的所有产品系列。若要自定义列表,请选择“已选择”并添加产品系列。”,
“zh-TW”: “系統預設會將您所有的商品系列都列入清單。如果想自訂清單,請點選「已選取」並新增商品系列。”
}
},
{
“type”: “header”,
“content”: “General”
},
{
“type”: “select”,
“id”: “container”,
“label”: “Container type”,
“default”: “container-fluid”,
“options”: [
{
“value”: “container-fluid”,
“label”: “Default”
},
{
“value”: “w-full”,
“label”: “Full width”
},
{
“value”: “container”,
“label”: “Use container box”
}
]
},
{
“type”: “header”,
“content”: “Settings”
},
{
“type”: “select”,
“id”: “display_type”,
“label”: “Select collections to show”,
“default”: “all”,
“options”: [
{
“value”: “all”,
“label”: “All”
},
{
“value”: “selected”,
“label”: “Selected”
}
]
},
{
“type”: “text”,
“id”: “title”,
“label”: “Page title”,
“default”: “All collections”
},
{
“type”: “richtext”,
“id”: “description”,
“label”: “Description”
}
],
“blocks”: [
{
“type”: “collection_item”,
“name”: “Collection”,
“settings”: [
{
“type”: “collection”,
“id”: “collection”,
“label”: “Select collection”
},
{
“type”: “image_picker”,
“id”: “image”,
“label”: “Select image”
}
]
}
]
}
{% endschema %}

Hi @ArmaghanSidd ,

This is Richard from PageFly - Landing page builder, I’d like to suggest this idea:
Step 1: Go to Online Store->Theme->Edit code
Step 2: Section->/main-collection.liquid->paste below code at the bottom of the file:


{{ collection.description }}

I hope it would help you
Best regards,

Richard | PageFly

there are 5 options are available in section.

  • collection-list-template.liquid
  • collection-list.liquid
  • collection-page-header.liquid
  • featured-collection.liquid
  • main-collection-product-grid.liquid

In which option I should add the code.

Hi @ArmaghanSidd ,

You can try add my code in main-collection-product-grid.liquid file

Best regards,

Richard | PageFly

thanks a lot. it totally works.