Home / Tag Archives: Magento 2

Tag Archives: Magento 2

Configure Origin shielding and timeout settings in Fastly

In the previous article I wrote on how to register a Fastly account and install & configure Fastly module for Magento 2 in order to improve your store performance. In this article I’m going to talk about how to fine tune Fastly’s service performance by configuring Origin shielding and timeout settings. Origin shielding Origin shielding... The post Configure Origin shielding and timeout settings in Fastly appeared first on Inchoo. Do you need any custome Development Click here and fill the form with full your requirement and after i will send the quotes of your work requirements....

Read More »

Javascript Bundling in Magento 2

Javascript bundling is a technique that groups separate files in order to reduce the number of HTTP requests that are required to load a page. Bundling is commonly used in today’s “module-based” development where some functionalities are basically split into Modules (roughly explained). For loading modules, we usually use some of popular module loaders such... The post Javascript Bundling in Magento 2 appeared first on Inchoo. Do you need any custome Development Click here and fill the form with full your requirement and after i will send the quotes of your work requirements....

Read More »

More/Less functionality in Magento2

Everything you need to know on how to setup more/less functionality in Magento 2 The post More/Less functionality in Magento2 appeared first on Inchoo. Do you need any custome Development Click here and fill the form with full your requirement and after i will send the quotes of your work requirements....

Read More »

How to set Error / Maintenance page in Fastly CDN

The Fastly CDN will sometimes return a 503 error due to various issues that can occur. The generic text associated with a 503 error is “Service Unavailable” and it can mean variety of things. This default error response can be confusing to the customers and have a basic look and feel. This guide will show... The post How to set Error / Maintenance page in Fastly CDN appeared first on Inchoo. Do you need any custome Development Click here and fill the form with full your requirement and after i will send the quotes of your work requirements....

Read More »

By passing Magento 2 layout update restrictions in Admin

Magento’s layout system has been vastly improved in Magento 2 to be more accessible, more powerful and to be more streamlined. But, for some reason, only a very small subset of layout functions is made available for use in Magento 2 Admin (category layout XML updates, to be more precise). In this article, we’re going to... The post Bypassing Magento 2 layout update restrictions in Admin appeared first on Inchoo. Do you need any custome Development Click here and fill the form with full your requirement and after i will send the quotes of your work requirements....

Read More »

Klevu – search engine that will increase revenue, self-learn and improve UX

One of most important parts of every store is its Search functionality. Implementing a more advanced search solution can have positive and big impact on search function, which leads to significant increase in conversion rate. After all, visitors trust in search results. If your store’s search experience is good, users will use it more than... The post Klevu – search engine that will increase revenue, self-learn and improve UX appeared first on Inchoo. Do you need any custome Development Click here and fill the form with full your requirement and after i will send the quotes of your work requirements....

Read More »

Override Magento 2 Layout: Product page example

Layouts play a major roll in Magento. This roll is well known from Magento 1x layout approach. With Magento 2 couple of things are changed and improved. Really, we finally have on our disposal useful layout manipulation options. Layout basics If you are here just for example and you already familiar with Magento 2 Layout,... The post Override Magento 2 Layout: Product page example appeared first on Inchoo. Do you need any custome Development Click here and fill the form with full your requirement and after i will send the quotes of your work requirements....

Read More »

Adding videos to product page in Magento2

Today is even impossible to imagine a good product detail page without product video/s. In Magento 2, adding videos to the product details page is quite easy. The major problem is in most cases with an initial setup. Most of the product videos already exist online, either on youtube.com or vimeo.com. In the first case,... The post Adding videos to product page in Magento2 appeared first on Inchoo. Do you need any custome Development Click here and fill the form with full your requirement and after i will send the quotes of your work requirements....

Read More »

Validate a custom form in Magento 2

This article will cover the fundamentals of validating any form in Magento 2. The contact form on Contact us page will be used and modified for the purpose of the article. The form itself can be found in the following paths, depending on the type of installation you are using: app/code/Magento/Contact/view/frontend/templates/form.phtml vendor/magento/module-contact/view/frontend/templates/form.phtml In order to... The post Validate a custom form in Magento 2 appeared first on Inchoo. Do you need any custome Development Click here and fill the form with full your requirement and after i will send the quotes of your work requirements....

Read More »

Magento 2 Custom CMS page layout

We’ve had a request to add a new custom layout for CMS pages in one Magento shop. This can be very useful and can save you a lot of time for different static pages of your shop. In this example we’ll create a layout named Inchoo Layout. We should focus on two xml files: layouts.xml... The post Magento 2 Custom CMS page layout appeared first on Inchoo. Do you need any custome Development Click here and fill the form with full your requirement and after i will send the quotes of your work requirements....

Read More »

Initial preparation for an eCommerce project

Working in web development company is really interesting, especially when you work in the company that deals with many different projects across many different industries. Every day is pretty challenging and you have to manage a lot of things to make it work. However, I can only imagine how you as our clients feel when... The post Initial preparation for an eCommerce project appeared first on Inchoo. Do you need any custome Development Click here and fill the form with full your requirement and after i will send the quotes of your work requirements....

Read More »

Why not start using Magento2 UI library, it’s easy and fun

Magento2 came with very “controversial” frontend architecture approach. We will not discuss that but we will try to explain how to empower current Magento2 UI library to achieve most common frontend task. First, what is Magento UI library and where to find it. As intro text explain: The Magento UI library is a flexible modular Magento... The post Why not start using Magento2 UI library, it’s easy and fun appeared first on Inchoo. Do you need any custome Development Click here and fill the form with full your requirement and after i will send the quotes of your work requirements....

Read More »

How to modify default meta description, title, and keywords in Magento 2

The default description, default title, and default keywords input fields in Magneto administration used to create SEO issues for store owners ever since version 1.X of Magento. Magento versions 2.X are no exception to this issue. Why is this an issue? The SEO best practice for meta descriptions is to have a unique meta description... The post How to modify default meta description, title, and keywords in Magento 2 appeared first on Inchoo. Do you need any custome Development Click here and fill the form with full your requirement and after i will send the quotes of your work requirements....

Read More »

Create swtch color on product list page in Magento

Copy and past the code . where you want to display color  below the name or above the name. follow the following steps: images updated in configurable simple product  acording to color . Change Visibility *: catalog search  List.phtml <? if($_product->getTypeId() == "configurable"): $conf = Mage::getModel('catalog/product_type_configurable')->setProduct($_product); $simple_collection = $conf->getUsedProductCollection()->addAttributeToSelect('*')->addFilterByRequiredOptions(); foreach($simple_collection …

Read More »

Magento: How to check if current page is homepage?

1.) // Put your homepage-only code in here. 2.) if($this->getIsHomePage()) { echo 'You are in Homepage!'; } else { echo 'You are NOT in Homepage!'; } 3.) $routeName = Mage::app()->getRequest()->getRouteName(); $identifier = Mage::getSingleton('cms/page')->getIdentifier(); if($routeName == 'cms' && $identifier == 'home') { echo 'You are in Homepage!'; } else { echo …

Read More »