├── Block └── Rewrite │ └── Catalog │ └── Product │ ├── ListProduct.php │ └── ProductList │ └── Toolbar.php ├── Model └── Rewrite │ └── Catalog │ ├── Category │ └── Attribute │ │ └── Source │ │ └── Sortby.php │ ├── Config.php │ └── Config │ └── Source │ └── ListSort.php ├── README.md ├── composer.json ├── etc ├── di.xml └── module.xml └── registration.php /Block/Rewrite/Catalog/Product/ListProduct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishjoy/magento2-catalog-sortby/HEAD/Block/Rewrite/Catalog/Product/ListProduct.php -------------------------------------------------------------------------------- /Block/Rewrite/Catalog/Product/ProductList/Toolbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishjoy/magento2-catalog-sortby/HEAD/Block/Rewrite/Catalog/Product/ProductList/Toolbar.php -------------------------------------------------------------------------------- /Model/Rewrite/Catalog/Category/Attribute/Source/Sortby.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishjoy/magento2-catalog-sortby/HEAD/Model/Rewrite/Catalog/Category/Attribute/Source/Sortby.php -------------------------------------------------------------------------------- /Model/Rewrite/Catalog/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishjoy/magento2-catalog-sortby/HEAD/Model/Rewrite/Catalog/Config.php -------------------------------------------------------------------------------- /Model/Rewrite/Catalog/Config/Source/ListSort.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishjoy/magento2-catalog-sortby/HEAD/Model/Rewrite/Catalog/Config/Source/ListSort.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishjoy/magento2-catalog-sortby/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishjoy/magento2-catalog-sortby/HEAD/composer.json -------------------------------------------------------------------------------- /etc/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishjoy/magento2-catalog-sortby/HEAD/etc/di.xml -------------------------------------------------------------------------------- /etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishjoy/magento2-catalog-sortby/HEAD/etc/module.xml -------------------------------------------------------------------------------- /registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishjoy/magento2-catalog-sortby/HEAD/registration.php --------------------------------------------------------------------------------