Category: Magento 2 (page 29 of 33)

3 Must have Magento 2 WhatsApp Extensions to Boost Sales

WhatsApp has proven to be a tool so valuable with all of the noise across social media — if you haven’t started building a WhatsApp marketing campaign, now is the time. That’s why we’re introducing Magento 2 WhatsApp Extensions: a new way to run your business on the go by bringing customer conversations, marketing workflows,…

Bluefoot Drag & Drop Page Builder For Magento 2

BlueFoot is a powerful set of tools to help you create and manage content on your Magento 2 store, everything from product descriptions through to blogs. To provide merchants with a simple drag & drop page builder tool to manage their webstore content, Magento acquired the well-known Bluefoot CMS & Page Builder module. Good news…

Magento 2 – How to create a simple product programmatically using InstallData?

You can create simple product programmatically using InstallData by using the below InstallData script. <?php namespace Vendor\Product\Setup; use Magento\Framework\Setup\InstallDataInterface; use Magento\Framework\Setup\ModuleContextInterface; use Magento\Framework\Setup\ModuleDataSetupInterface; class InstallData implements InstallDataInterface { /** * @var string */ protected $productType = \Magento\Catalog\Model\Product\Type::TYPE_SIMPLE; /** * @var \Magento\Catalog\Model\ProductFactory */ protected $productFactory; /** * @var \Magento\Store\Model\StoreManagerInterface */ protected $storeManager; public function __construct( \Magento\Catalog\Model\ProductFactory…

Magento 2: How to compile specific theme using static content deploy command?

If you want to compile only theme (Package/Theme) with all that belongs to it, run the command: php bin/magento setup:static-content:deploy –theme Package/Theme If you want to compile the theme only .less files, run the command: php bin/magento setup:static-content:deploy –theme Package/Theme –no-javascript –no-css –no-images –no-fonts –no-html –no-misc –no-html-minify To understand how it works and to see…

Solved: Magento 2.x Component Manager Problem (Please wait loading)

Recently I installed Magento 2.1.3. The problem is that, when i am in the Component Maganer, and i Sync my account, it showns an infinite “please wait” loading, and i can’t install any extension at all. After some research and searching I found one solution as below. Please open your composer.json file and move to…

How to update your Magento 2 version?

In this article, we will explain how to upgrade your Magento 2 version from 2.1.x for 2.1.5 using Command-Line Interface (CLI). Then upgrade your Magento 2 by following these steps: 1) Access Your Server via SSH 2) Navigate to the Magento 2 Root Directory 3) Upgrade Commands composer require magento/product-community-edition 2.1.5 –no-update composer update rm…

How to Configure Robots.txt in Magento 2?

As you know, configuring robot.txt is important to any online store that is working on a site’s SEO. You can configure the option by following below path in Magento 2.x admin. Go to Stores -> Configuration -> General (Left side) -> Design (section) -> Search Engine Robots -> Default Robots (Select)-> Select INDEX, FOLLOW Instructs…

Magento 2 – Dirty COW Linux OS Vulnerability

In Magento 2, you will see notification about Dirty COW Linux OS Vulnerability. So what is this ? What it means ? Dirty COW (CVE-2016-5195) is a privilege escalation vulnerability in the Linux Kernel that can allow a local user (like a web hosting account) to gain root access to the server. This can also…

Admin design configuration does not save in Magento 2.1.x

Solution Find the file \vendor\magento\module-email\Model\AbstractTemplate.php and on line number 672 replace the if condition if ($storeId) with if ($storeId !== false) Explanation When you are saving the Global Configuration for the Store, you can see in the url that the current scope id is 0 (admin/theme/design_config/edit/scope/default/scope_id/0/) This is important. Now, when you save the configuration,…

How to reset admin password in Magento 2?

In order to reset the admin password from phpmyadmin in Magento 2, please follow below simple steps. 1) Go to phpMyAdmin 2) Open table admin_user 3) Run the following sql query UPDATE admin_user SET password = CONCAT(SHA2(‘xxxxxxxxNewPassword’, 256), ‘:xxxxxxxx:1’) WHERE username = ‘admin’; Here, NewPassword -> Replace it with your password. Thats it. Team HiddenTechiesWrite…

Older posts Newer posts