Top 10 Magento 2 Extensions

Top 10 List
Magento 2 is a brilliant e-commerce platform created for online vendors who want to ensure their online stores are polished to perfection. With Magento, you get to choose what your store looks like, how it works, and what features are available to your customers. All of this is made easier with Magento 2 extensions. To help you choose the best extensions for your online store and improve its overall quality, we’ve made a selection of some of the best Magento 2 extensions. Check out our top 10 choices of the best Magento 2 extensions you can start using today. Let’s break it down together. 1. Google Page Speed Optimizer for Magento 2 by Amasty Speed optimization is extremely important for every online store. If your pages load slowly, your potential…
Read More

Call to a member function getStoreLabel() in price.phtml

Magento
After upgrade Magento 1.8.0.0 get error on list and view page. Fatal error: Call to a member function getStoreLabel() on a non-object in price.phtml I got simple fix as below and its working fine for me. Open this file : app/design/frontend/[your_package]/[your_theme]/template/catalog/product/price.phtml Find this code: [php] $_specialPriceStoreLabel = $this->getProductAttribute('special_price')->getStoreLabel(); [/php]   And replace it with below: [php] $specialPriceAttr = $this->getProductAttribute('special_price'); if (!is_null($specialPriceAttr)) { $_specialPriceStoreLabel = $this->getProductAttribute('special_price')->getStoreLabel(); } else { $_specialPriceStoreLabel = ''; } [/php]     [JWD-Magento-Development]
Read More

Magento 2 Useful Commands

Magento2
Here you see list of some use full command for magento2 development and customization. For these commands you need to have SSH access to your server or use the Command Line for local access. These commands are run within the /magento2 folder and reference the /magento2/bin folder. Magento 2 Cache Commands To flush Magento 2 cache: Go to Magento root directory php bin/magento cache:clean php bin/magento cache:flush Magento 2 cache status php bin/magento cache:status Magento 2 cache clean php bin/magento cache:clean Magento 2 disable cache Command will disable all cache types php bin/magento cache:disable Disable specific cache type php bin/magento cache:disable CACHE_TYPE Like: php bin/magento cache:disable config Magento 2 Enable cache All cache types php bin/magento cache:enable Specific cache type php bin/magento cache:enable CACHE_TYPE Like: php bin/magento cache:enable layout Magento…
Read More

Magento Pre-Orders vs Backorders – What is the difference?

Magento
The world has dramatically changed since the beginning of the 21st century. Magento’s Pre-ordering and back ordering have opened the considerable opportunities for e-merchants and even the bigger ones for software providers in such fields, for instance, inventory, order or the warehouse management and the drop shipping. A pre-order is for the item that has not been released till now and will be released in the future or after some time. Backorder is an item that was once in stock, but currently out of stock and will be available in future. Let's take a closer look at both of these 2 terms. Let's say, you can't wait for the release date of the product whether it is an electronic device, an interesting book, pair of Jordans, or a computer game,…
Read More

A Complete Guide on Magento Hosting

Magento
If you are starting a new eCommerce business, then Magento will be the best platform for it. Magento has become a popular open source eCommerce platform because of its flexibility and multiple features. But, as its architecture is complex in comparison with other platforms, it has more server demands. For the Magento based eCommerce stores, you need to have a hosting server which enhances its performance. But, the selection of a hosting provider is the most difficult as well as an important task to do. There are various aspects which affects the selection of the Magento hosting provider. We will try to cover multiple aspects one by one. But let us first see what the requirement of Magento for hosting is. What are the Magento Hosting Requirements? Generally, the hosting…
Read More

Magento – A Perfect CMS for Building ECommerce Portals

Magento
Magento has proven to be one of the best web development systems for developing eCommerce websites. Well, Magento is an open-source CMS system which offers plenty of features and functionalities right out of the box. Since its advent, Magento has been able to earn good amount of users and provides efficient solutions for building user-friendly online stores. Today millions of online retailers are looking out for the Magento Developers For Hire who will provide them with a healthy and functional eStores for their businesses. In a very less time, Magento has completely changed the virtual business arena. And with the each passing day this CMS system is becoming more and more powerful especially in terms of functionalities and features. Most of the retail store owners are choosing Magento because of…
Read More

A Comparative Study of Magento and its Alternate Ecommerce Solutions for Magento Experts

Magento
  Over the last few years, we have seen many ecommerce platforms emerging up with powerful and new features. You are most likely to get intrigued while looking for the best ecommerce solution for your business. It is quite common practice of businesses to go for platforms, which just has all the required tools to run an online store. However, it is never wise to settle down for mediocre platforms without looking at its features, further customizability and scalability. So far, Magento has been able to acquire a great market share by becoming the most popular ecommerce solution for obvious reasons. Magento’s community edition is free, highly scalable, extensively customizable and most importantly it is packed with many powerful features that ensure an excellent ecommerce website for your business. Here,…
Read More

Reindex using Command line in Magento2

Magento2
Here Explain how to handle reindex using command line in magento2. In root magento directory [sourcecode language="plain"]php bin/magento indexer:reindex[/sourcecode]   in root/bin directory [sourcecode language="plain"]php magento indexer:reindex[/sourcecode]   To get the index name to run index one by one first write below command to get info in magento root directory [sourcecode language="plain"]php bin/magento indexer:info[/sourcecode]   To run single reindexing command [sourcecode language="plain"]php bin/magento indexer:reindex indexer_name[/sourcecode]   indexer name which we received name from indexer:info   [JWD-Magento-Development]
Read More

Do E-commerce the Magento way!

Magento
E-commerce is the order of the day in the world of virtual marketing and selling. It is a great way to enhance your business and tap the teeming online market. And while the market is swamped with e-commerce applications, it is critical to choose and select the best ecommerce partner for your business. Magento, an open source ecommerce software is increasingly becoming the more preferred solution for online merchandising. Your brand’s success depends on how well do you implement your ecommerce and target an untapped audience. Magento is highly resilient, has a rich and extremely user friendly interface and provides the best solution to numerous e-commerce problems that occur in the online business. Know how Magento works to deliver some of the world’s best ecommerce brands - here is Magento101.…
Read More