Category: Magento Tutorials (page 1 of 12)

Make Every Visitor Feel Special With Targeted Magento 2 Promo Bars

In 2025, generic marketing doesn’t cut it. Shoppers expect relevance, personalisation, and instant value. If your Magento 2 store is still displaying one-size-fits-all promotional messages, you could be leaving conversions on the table. Enter targeted Magento 2 promo bars—a simple yet powerful tool that helps you speak directly to different customer segments without overwhelming them….

The Best PHP Shopping Cart Systems – Ranked & Reviewed (2025)

When it comes to building a flexible, powerful, and scalable online store, PHP shopping cart systems continue to lead the way in 2025. Despite the rise of SaaS eCommerce builders and headless stacks, open-source PHP platforms remain a top choice for developers and business owners looking for more control, better customisation, and long-term cost-efficiency. So,…

E-commerce on PHP? Here’s What the Pros Are Doing in 2025

Despite the rise of JavaScript-heavy stacks and serverless technologies, PHP continues to power a large portion of the e-commerce world in 2025, quietly and confidently. It’s not flashy. It doesn’t always make headlines. But it delivers, scales, and sells. At HiddenTechies, we work with a diverse range of clients who rely on PHP-based platforms, such…

Magento 2 – Issue Fix – CRITICAL Error: Unable To Serialize Value

In this post I am going to explain How to Unable to serialize value. Error : After Magento 2 version upgrade error on check page is as below. “report.CRITICAL: Unable to serialize value. Error: Malformed UTF-8 characters, possible incorrectly encoded.” Please follow the steps to resolve this issue. 1. Create registration.php file at below Path…

Magento 2 – How to Set System Configuration Value Using CLI Command

The SSH access or Command Line Interface (CLI) provides facility for developers to run commands provided by Magento 2 extensions. In this post I am going to explain How to Set System Configuration Value Using CLI Command in Magento 2. Using below commands, you can set or display configuration values To set the value of…

Magento 2 – How to Get Product Stock Information

In this post I am going to explain How to Get Product Stock Information in Magento 2. Use below methods to get product stock information in Magento 2 such as stock status, minimum stock quantity, minimum sale quantity, minimum quantity, etc. Using below code snippet you can get product stock data by passing product id….

Magento 2 – How to Set Default Values for System Configuration Fields

In this post I am going to explain how to Set Default Values for System Configuration Fields in Magento 2. First we will make one “system.xml” file at below path. Path: app/code/<vendor>/<module>/etc/adminhtml/system.xml <?xml version=”1.0″ ?> <config xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance” xsi:noNamespaceSchemaLocation=”urn:magento:module:Magento_Config:etc/system_file.xsd”> <system> <tab id=”ht” translate=”label” sortOrder=”999999″> <label>HT</label> </tab> <section id=”mymodulesection” translate=”label” type=”text” sortOrder=”30″ showInDefault=”1″ showInWebsite=”1″ showInStore=”1″> <class>separator-top</class> <label>My…

How to Add Readonly Field in ui_component Form in Magento 2

In this post I am going to explain how to add readonly field in ui_component form in Magento 2. Check the below example code snippet to add readonly field in ui_component. <field name=”identifier” formElement=”hidden”> <argument name=”data” xsi:type=”array”> <item name=”config” xsi:type=”array”> <item name=”dataType” xsi:type=”string”>text</item> <item name=”label” xsi:type=”string” translate=”true”>Identifier</item> <item name=”formElement” xsi:type=”string”>input</item> <item name=”source” xsi:type=”string”>identifier</item> <item name=”dataScope”…

Magento 2 – How to Get Creditmemo Details by Creditmemo Id

In this post I am going to explain how to get creditmemo details by creditmemo id in Magento 2. Using below code snippet you can get creditmemo details by passing creditmemo id. 1. Using Dependency Injection Add below code snippet in Block class. protected $_creditmemoRepositoryInterface; protected $_logger; public function __construct( \Magento\Framework\View\Element\Template\Context $context, \Magento\Sales\Api\CreditmemoRepositoryInterface $creditmemoRepositoryInterface, \Psr\Log\LoggerInterface…

How to Add Tooltip in ui_component Form Field in Magento 2

In this post I am going to explain how to add tooltip in ui_component form field in Magento 2. Check the below example code snippet to add tooltip in ui_component form field. <field name=”identifier” formElement=”hidden”> <argument name=”data” xsi:type=”array”> <item name=”config” xsi:type=”array”> <item name=”dataType” xsi:type=”string”>text</item> <item name=”label” xsi:type=”string” translate=”true”>Identifier</item> <item name=”formElement” xsi:type=”string”>input</item> <item name=”source” xsi:type=”string”>identifier</item> <item…

Older posts