Layered Navigation
v2.7.10

How to upgrade extension

To upgrade the extension, take the following steps:

  1. Back up your store's database and web directory.
  2. Log in to the SSH console of your server and navigate to the root directory of the Magento 2 store.
  3. Run the command below to update the current extension with all dependencies:

        composer require mirasvit/module-seo-filter:* mirasvit/module-navigation:* --update-with-dependencies 

    Note

    If you have the Hyva, run:

        composer require mirasvit/module-seo-filter:* mirasvit/module-navigation:* mirasvit/module-navigation-hyva:* --update-with-dependencies 

    Note

    In some cases, the command above is not applicable, or you are unable to update just the current module, meaning you need to upgrade all Mirasvit modules in a bundle. In this case, the command above will have no effect.

    Instead, run the composer update mirasvit/* command. It will update all Mirasvit modules which are installed in your store.

  4. Run the below command to re-enable the extension:

        php -f bin/magento module:enable Mirasvit_Core Mirasvit_SeoFilter Mirasvit_Scroll Mirasvit_LayeredNavigation Mirasvit_Brand Mirasvit_AllProducts Mirasvit_QuickNavigation Mirasvit_LandingPage

    Note

    If you have the Hyva, run:

        php -f bin/magento module:enable Mirasvit_Core Mirasvit_SeoFilter Mirasvit_Scroll Mirasvit_LayeredNavigation Mirasvit_Brand Mirasvit_AllProducts Mirasvit_QuickNavigation Mirasvit_LandingPage Hyva_MirasvitLayeredNavigation Hyva_MirasvitAllProducts Hyva_MirasvitBrand Hyva_MirasvitQuickNavigation Hyva_MirasvitScroll 

    Note

    If you are using Magento LiveSearch, additionally run:

       php -f bin/magento module:enable Mirasvit_LayeredNavigationLiveSearch

  5. Run the command below to install the updates:
        php -f bin/magento setup:upgrade 
  6. Run the command below to clean the cache:
        php -f bin/magento cache:clean 
  7. Deploy the static view files
        rm -rf pub/static/*; rm -rf var/view_preprocessed/*;
        php -f bin/magento setup:static-content:deploy