How to install the extension
- Back up your store database and web directory.
- Log in to the SSH console on your server and navigate to the root directory of the Magento 2 store.
- Copy the installation instructions from the page My Downloadable Products to the SSH console and press ENTER.
- Run the command
php -f bin/magento module:enable Mirasvit_Core Mirasvit_CatalogLabel
for enable extension. - Run the command
php -f bin/magento setup:upgrade
to install extension. - Run the command
php -f bin/magento cache:clean
for clean cache. -
Deploy static view files
rm -rf pub/static/frontend/*; rm -rf pub/static/backend/*; rm -rf var/view_preprocessed/*; php -f bin/magento setup:static-content:deploy
Install the extension for Hyva
- Run these commands
composer require hyva-themes/magento2-mirasvit-catalog-label
- Enable installed Hyva modules:
bin/magento module:enable Hyva_MirasvitCatalogLabel
- Update Magento database schema and data with the command:
bin/magento setup:upgrade
- Compile the code of the installed extension:
cd /path/to/theme/web/tailwind/
npm run build-prod
- Run the command below to deploy static content and clean the cache:
cd /path/to/project/
rm -rf pub/static/frontend/*; rm -rf pub/static/backend/*; rm -rf var/view_preprocessed/*; php -f bin/magento setup:static-content:deploy bin/magento cache:flush
- Apply required customizations to your theme as described here