How to upgrade the extension
To upgrade the extension, follow these steps:
-
Back up your store's database and web directory.
-
Log in to the SSH console of your server and navigate to the root directory of your Magento 2 store.
-
Run the following command to update the current extension along with all dependencies:
composer require mirasvit/module-gtm:* --update-with-dependenciesIn some cases, the commands above may not be applicable, or you may be unable to update only the current module. If that's the case, you will need to upgrade all Mirasvit modules in a bundle. The command above will have no effect in such scenarios.
Instead, run the following commands to update all Mirasvit modules installed in your store:composer update mirasvit/*
The Hyvä theme is now supported out of the box. If you previously installed the standalone Hyvä package, remove it after upgrading:
composer remove mirasvit/module-gtm-hyva
Starting with this release, the Tracking settings and Attribute mapping options moved out of the Google Tag Manager section into the shared Marketing tracking section, where they apply to every Mirasvit tracking extension. Saved values are migrated automatically, but it is worth re-checking your configuration under Stores → Settings → Configuration → Mirasvit Extensions → Marketing tracking after updating. See Shared tracking settings.
- Install the updates by running the following command:
php -f bin/magento setup:upgrade - Clean the cache by running the following command:
php -f bin/magento cache:clean - Deploy the static view files:
rm -rf pub/static/*; rm -rf var/view_preprocessed/*;
php -f bin/magento setup:static-content:deploy