skip to Main Content

Switch store programmatically magento 2

I am trying to switch stores programmatically. I used following code to achieve it: /** * @var MagentoStoreModelStoreManagerInterface */ protected $_storeManager; public function __construct( MagentoStoreModelStoreManagerInterface $storeManager ) { $this->_storeManager = $storeManager; } and then: $this->_storeManager->setCurrentStore('YOUR_STORE_ID'); as given in https://magento.stackexchange.com/a/173763/59686 But…

VIEW QUESTION
Back To Top
Search