How To

How to Use Custom Variables in Magento 2

Hello Magento Friends,

Today I will guide you about How to Use Custom Variables in Magento 2.

Variables are a piece of information that you can use multiple times. Magento allows creating custom variables. Custom variables can be used in email templates, coding, or WYSIWYG editor.

Sometimes developers need data from only one or two fields. Instead of creating system configurations, developers can use Magento 2 Custom Variables.

So, let’s learn How to Use Custom Variables in Magento 2.

Steps to Use Custom Variables in Magento 2:

Step 1: First you need to add custom variable value from the Magento admin panel

  • On the Admin sidebar, go to System > Other Settings > Custom Variables.
  • Click Add New Variable and fill in details.

Step 2:  Now you need to access or get custom variables value in our code so we need to add one helper file in the following path.

app\code\Vendor\Extension\Helper\Data.php

<?php

namespace Vendor\Extension\Helper;

class Data extends \Magento\Framework\App\Helper\AbstractHelper 
{

    protected $variable

    public function __construct(
        \Magento\Framework\App\Helper\Context $context,
        \Magento\Variable\Model\Variable $variable
    )
    {
        $this->variable = $variable;
        parent::__construct($context);
    }
        
    public function getCustomVarible()
    {
        $variableData = $this->variable->loadByCode('test', 'base'); // Here first parameter is custom-variable-code and second one is store-code
        return $variableData->getPlainValue();
    }    

}

Conclusion:

Hence, this way you can Use Custom Variables in Magento 2. In case you are stuck anywhere, let me know in the comment part. Share the article and hit 5 stars. Stay updated with us for more tutorials.

Happy Coding

Click to rate this post!
[Total: 14 Average: 4.1]
Dhiren Vasoya

Dhiren Vasoya is a Director and Co-founder at MageComp, Passionate 🎖️ Certified Magento Developer👨‍💻. He has more than 9 years of experience in Magento Development and completed 850+ projects to solve the most important E-commerce challenges. He is fond❤️ of coding and if he is not busy developing then you can find him at the cricket ground, hitting boundaries.🏏

View Comments

  • Hi, we want to insert a custom variable on a category page. At the moment it looks like this:
    {{customVar code="newsletter_discount"}}
    Unfortunately, when we integrate it like this, the text on the website looks like this: Subscribe to our newsletter and get a {{customVar code="newsletter_discount"}} discount on your order.

    Is there a difference between category and CMS page?

  • Hi
    Can you plz explain if we can use custom variable in cms content.
    I need to add variable value for id in {{block....}} cms page
    {{block class="Magento\Framework\View\Element\Template" template="Vendor_Module::template.phtml" Id=$variab}}

Recent Posts

6 Innovative Tools Revolutionizing E-Commerce Operations

E-commerce has transformed the way consumers shop for products and services and interact with businesses.…

2 days ago

How Upcoming Cookie Changes Will Affect Your E-commerce Website?

The e-commerce world is constantly in flux. New tech and strategies emerge daily to help…

2 days ago

Magento 2: How to Add Header and Footer in Checkout

Hello Magento Friends, In today’s blog, we will discuss adding a header and footer to…

3 days ago

Understanding Flexbox Layout in React Native

Hello React Native Friends, Building a visually appealing and responsive mobile app is crucial in…

5 days ago

HYVÄ Themes Releases: 1.3.6 & 1.3.7 – What’s New

We're thrilled to announce the release of Hyvä Themes 1.3.6 and 1.3.7! These latest updates…

5 days ago

How Modern E-Commerce Platforms Leverage Docker & Kubernetes for Scalability

Your e-commerce platform is surging - orders are rolling in, traffic spikes are becoming the…

6 days ago