How to create a vendor list page in shopify
Shopify is an online e-commence platform that helps you to sell online.You can setup your store and bring your brand online.
For display vendors list on a page please follow below steps.
Step 1: Login to shopify admin account and go to theme section and click on edit code.
Step 2: In template section create a new template and name it what you want to like eg: vendor_list
Step 3 : Find {{ page.content }} in new created template and write following code after this
<ul class=""> {% for vendor in shop.vendors %} <li>{{ vendor | link_to_vendor }}</li> {% endfor %}</ul>
Step 4 : After that go to the pages section and create a new page and select template that you have create for vendor list.
Step 5: Now open you newly created page and here you will find the list of all vendors.