How to set stores configuration setting per store view level by config.php or config.xml in Magento 2?

You can set up the CMS default pages by store view level in Magento 2 by config.php, config.xml, or Manually from the admin panel.

To set up the Default pages by store view level on your site, You have to follow the given articles with provided steps.

Let’s say we have a website that contains multiple store views based on the language.

Main Website code => base
Main Website Store code => base
Main Website Default Store view code => default (By Default English store)
Main Website Spanish Store view code => us_es (Spanish Store view)
Main Website Spanish Store view code => us_fr (French Language Store view) Continue reading “How to set stores configuration setting per store view level by config.php or config.xml in Magento 2?”

How to improve category indexer performance in local development setup warden Magento 2?

If you are working with warden setup for Magento 2 local development and your category indexer taking much time to perform indexing. This article is definitely for you to improve the performance of category indexers with the warden.

I am using MariaDB for the warden and it’s taking time to perform category indexer.

You need to set a few database variable configurations in the warden-env.yml file to fix the catalog category indexer speed-up issue: Continue reading “How to improve category indexer performance in local development setup warden Magento 2?”

How to setup stores and website using config.php file Magento 2?

config.php file in Magento contains the list of installed modules, Website, Store related setup, Locales, and system configuration settings.

You can see the config.php file location at the given path, app/etc/config.php

I will just highlight the Scopes section of the config file.

There will be different sections to be used within the config.php file.h

1. modules (Out of the box modules section contains the List of Modules available.)
2. scopes (This section contains the stores, store groups, and websites related information.)
3. system (This section is used to set system configuration value.)
4. themes (This section is used to setup themes related information.) Continue reading “How to setup stores and website using config.php file Magento 2?”