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 %}
{% assign seller_products = collections.all.products | where: 'vendor', vendor_name %} {% if seller_products.size > 0 %}
{% endif %}
{% else %}
Log Out
{% endif %}
{% else %}
{% endif %}
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 %}
{% else %}
{% if product.featured_image %}
{% else %}
{% endfor %}
No Image
{% endif %}
{{ product.title }}
{{ product.type }}
GHS {{ product.price | money_without_currency }}
{% if product.available %}In Stock{% else %}Out of Stock{% endif %}
No products found under your account yet.
Products will appear here once they are added by the admin.
⚠️ Subscription Expired
Your seller subscription has expired or is inactive. You cannot access your dashboard until your subscription is renewed and approved.
Renew Your SubscriptionLog Out
Seller Login Required
Please log in to access your seller dashboard and view your products.
Log In to Your AccountDon't have an account? Sign up here