Seller Dashboard

{% if customer %} {% assign is_active = false %} {% for tag in customer.tags %} {% if tag == 'seller-active' %} {% assign is_active = true %} {% endif %} {% endfor %} {% if is_active %} {% assign vendor_name = customer.name %}

Welcome, {{ customer.first_name }}! 👋

Here are the products available under your store.


{% assign seller_products = collections.all.products | where: 'vendor', vendor_name %} {% if seller_products.size > 0 %}
{% for product in seller_products %}
{% if product.featured_image %} {{ product.title }} {% else %}
No Image
{% endif %}

{{ product.title }}

{{ product.type }}

GHS {{ product.price | money_without_currency }}

{% if product.available %}In Stock{% else %}Out of Stock{% endif %}

{% endfor %}
{% else %}

No products found under your account yet.

Products will appear here once they are added by the admin.

{% endif %}

Log Out

{% else %}

⚠️ Subscription Expired

Your seller subscription has expired or is inactive. You cannot access your dashboard until your subscription is renewed and approved.

Renew Your Subscription

Log Out
{% endif %} {% else %}

Seller Login Required

Please log in to access your seller dashboard and view your products.

Log In to Your Account

Don't have an account? Sign up here

{% endif %}