Page 16 of 68

Magento 2 – How to Unlock Reindex Process | HiddenTechies

In Magento 2, Sometimes an issue comes like the indexing process gets locked at the time of reindexing. When the process or the index type is locked then you cannot reindex that specific locked index type. The reindex will always skip that index type and you will get an error as below. “Index is locked…

Magento 2 – How to Get Region Id and Region Name By Region Code

In this post I am going to explain how to get region id and region name by region code in Magento 2. Use this below code snippet. $regionCode = ‘CA’; $countryCode = ‘US’; $objectManager = \Magento\Framework\App\ObjectManager::getInstance(); $region = $objectManager->create(‘Magento\Directory\Model\Region’); $regionId = $region->loadByCode($regionCode, $countryCode)->getId(); echo $regionId; $regionName = $region->loadByCode($regionCode, $countryCode)->getName(); echo $regionName;   Thats it. Enjoy…

Magento 2 – How to Remove Customer Account Navigation Links

In this post I am going to explain how to remove customer account navigation links in Magento 2. First you need to create one layout file “customer_account.xml” in your custom extension or theme. Syntax to remove link: <referenceBlock name=”link-block-name” remove=”true” /> Here are list of links. <page xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance” xsi:noNamespaceSchemaLocation=”urn:magento:framework:View/Layout/etc/page_configuration.xsd”> <body> <!– Store credit –> <referenceBlock…

Magento 2 – How to Resize Product Image

In this post I am going to explain how to resize product image in Magento 2. Using the below code snippet you can resize the product image in the template (.phtml) file. <?php $productId = ’12’; $_product = $block->getProductById($productId); $imageHelper = $this->helper(‘Magento\Catalog\Helper\Image’); $imgWidth = 350; $imgHeight = 400; $imageId = ‘category_page_grid’; $productImage = $imageHelper->init($_product, $imageId)…

7+ Free Online Image Resizer – Optimize Your Images

Your company’s photos are critical for earning customer trust and making more sales. Optimizing images for web use is a compulsory step if you want to offer your visitors the best possible user experience. These Free Online Image Resizer are perfect for resizing an image to fit nicely with websites like Facebook, Twitter, Google+, YouTube,…

7+ Best SEO Plugins for WordPress ( Must Have SEO Tools )

Often we’re asked about what are the best WordPress SEO plugins and tools that we recommend. In this post, we will discuss the best SEO plugins for WordPress which can help to improve different aspects of SEO and increase the overall visibility of your site. All you need is to make sure that you use…

10+ Best Photo Editing Software for 2020

The best photo editing software can help to bring focus to an image, highlight your key subjects and transform an average picture into something truly incredible. There are countless different options out there to choose from, from better-known systems like Adobe’s Photoshop and Lightroom to simple but effective choices like Canva. There’s even some great…

10+ Best Data Analytics Tools for Your Ecommerce Store

Analytics is a key part of growing an ecommerce. In fact, analytics is everything. Ecommerce analytics tools are continuously developing with the online market, which has tripled over the last three years, according to The Global Ecommerce Playbook. It doesn’t matter what type of business you have or what your selling, Google Analytics is a…

10+ Free Business Card Maker – Create Your Own!

Your business card is often the initial interaction people have with your brand, so it’s important to make a good first impression. The first impression matters a lot in the business arena to attract new prospects successfully. Using Free business card maker, you can drop that badly designed business card and create a new one…

« Older posts Newer posts »