gary
12/20/2018 - 10:01 AM

Magento 2 - Get store Phone Number

Magento 2 - Get store Phone Number

How to get the store phone number

https://magento.stackexchange.com/questions/125354/how-to-get-store-phone-number-in-magento-2
$objectManager = \Magento\Framework\App\ObjectManager::getInstance();
$storeInformation = $objectManager->create('Magento/Store/Model/Information');
$storeInfo = $storeInformation->getStoreInformationObject($store);
$phone = $storeInfo->getPhone();
https://magento.stackexchange.com/questions/117098/magento-2-to-use-or-not-to-use-the-objectmanager-directly