Home

Awesome

Siteation - Magento 2 Store Info

Packagist Version Supported Magento Versions Hyvä Themes Supported License

The Magento2 StoreInfo module streamlines the process of integrating essential store information into your Magento 2 website. Traditionally, this information would be added via CMS Static Blocks or hardcoded into templates.

However, the StoreInfo module offers a more efficient method by directly accessing and retrieving values from the store information.

Key Features:

With the StoreInfo module, developers can easily enhance their Magento 2 storefronts with comprehensive and customizable store information.

Installation

Install the package via;

composer require siteation/magento2-storeinfo
bin/magento module:enable Siteation_StoreInfo

[!NOTE] This Module requires Magento 2.4 or higher! For more requirements see the composer.json.

How to use

The StoreInfo works out of the box by providing store information and store email addresses and displaying them on your storefront.

AdminStorefront
preview-1preview-2

Besides this the Siteation Storeinfo also adds even more usefull fields under Stores > Configration > Siteation > StoreInfo.

Socials

AdminStorefront
preview-3preview-4

Opening Hours

AdminStorefront
preview-5preview-6

Notices

AdminStorefront
preview-7preview-8

Get StoreInfo in your own Template blocks.

First get the viewModal in your template, using the following sample;

<details open><summary>Hyva - Sample Phtml file head</summary>
<?php declare(strict_types=1);

use Hyva\Theme\Model\ViewModelRegistry;
use Magento\Framework\View\Element\Template;
use Magento\Framework\Escaper;
use Siteation\StoreInfo\ViewModel\StoreInfo;

/** @var ViewModelRegistry $viewModels */
/** @var Template $block */
/** @var Escaper $escaper */

/** @var StoreInfo $storeInfo */
$storeInfo = $viewModels->require(StoreInfo::class);
</details> <details><summary>Luma - Sample Phtml file head</summary>

For Luma templates, see the previous sample for the xml needed to load the viewModal.

<?php declare(strict_types=1);

use Magento\Framework\View\Element\Template;
use Magento\Framework\Escaper;

/** @var Template $block */
/** @var Escaper $escaper */

/** @var Siteation\StoreInfo\ViewModel\StoreInfo $storeInfo */
$storeInfo = $block->getData('viewModelStoreInfo');
</details>

After this you can load any Magento StoreInfo field as text in your phtml;

<?php
// Get specific predefined store info field
$storeInfo->getPostcode();
$storeInfo->getSalesEmail();

// Get the same as above, using the global functions
$storeInfo->getStoreInfo('postcode'); // 'general/store_information/%s'
$storeInfo->getStoreEmail('email', 'ident_sales'); // 'trans_email/%2$s/%1$s'