Catalog addon for Shuup E-Commerce Platform


Keywords
shuup, attributes
Install
pip install shuup-scatl==0.2.1.5

Documentation

Shuup Scatl

This addon adds dynamic product filters (based on angular 5) to shuup.

Features

  • works through REST API
  • sorting by name and price
  • filtering by price with a slider
  • multi-value filters (you can check out shuup-attrim addon for details)
  • translation support
  • works out of the box with the default shuup theme
  • human-readable url parameters, example: scatl-demo.tk/catalog;filter.attrim.resolution=1920x1080;filter.price=674~3572;sort=name;page=1

Online Demo

Just a bare shuup installation with the default shuup theme (classic_gray). The site rollbacks itself to the initial state every day.

You can log in to the admin panel using the following credentials:

  • login: demo
  • password: demo

Pages:

Screenshots

Installation

Requires a PostgreSQL database.

Install using pip:

pip install shuup-scatl

Add attrim (a dependency) and scatl to your INSTALLED_APPS setting:

INSTALLED_APPS = [
    # [...]
    'attrim',
    'scatl',
]

Apply the migrations:

python manage.py migrate

Collect the static files:

python manage.py collectstatic