Read more Magento 2 Tutorials October 2, 2017 How to Set Up Flat Rate Shipping in Magento 2 Flat Rate Shipping is a popular shipping method in Magento 2 that allows you define a fixed charge applied per item, per shipping class or per order. In this tutorial, we will show you step-by-step how to set up the Flat Rate Shipping in your Magento store.
Read more Magento 2 Tutorials September 29, 2017 How to Configure Free Shipping in Magento 2 Are you ready to boost your online store’s appeal with free shipping? In this post, we’ll show you easy steps to add this great feature to your Magento 2 site. There’s no doubt that Free Shipping is a competitive necessity for some online retailers. Although there are certain costs associated with this shipping method, what […]
Read more Magento 2 Tutorials September 29, 2017 How To Set BCC For Customer Welcome Email In Magento? TASK Set BCC for the welcome emails that are sent to the new customers when they register new accounts. SOLUTIONS In your custom module – Rewrite model Mage_Customer_Model_Customer in config.xml <config> <global> <models> ... <customer> <rewrite> <customer>Vendor_Namespace_Model_Customer_Customer</customer> </rewrite> </customer> ... </models> </global> </config> – Create Customer.php in path Vendor/Namespace/Model/Customer/Customer and override function _sendEmailTemplate class Vendor_Namespace_Model_Customer_Customer […]
Read more Magento 2 Tutorials September 25, 2017 How To Set Up PayPal Express Checkout in Magento 2 Nowadays, PayPal is considered the most preferred online payment around the world for its convenience and safety. In Magento 2, your store can allow the customers to make payments through debit, credit cards, and PayPal as well. There is an array of PayPal payment options; however, in this Magento 2 tutorial, we will give you […]
Read more Magento 2 Tutorials September 21, 2017 How To Get SKUs From Orders In Magento This Magento tutorial will show you how to get all SKUs from orders of the user who is currently logged in in Magento. For Example: A user has placed 3 orders. How can we get the returned list of SKUs including 0001, 0002, 0003, 0004, and 0005? The aim of this is to create a […]
Read more Magento 2 Tutorials September 18, 2017 Magento 2 Payment Methods: A Definitive Guide On Configuration In Magento 2, the checkout process is the last stage where every detail truly matters. It provides an array of built-in payment methods to accommodate the diverse needs of online shoppers. Customers can opt for the traditional Check/Money Order, allowing them to make payments by sending a physical check or money order to the store’s […]
Read more Magento 2 Tutorials September 15, 2017 How To Create A Credit Memo In Magento 2 In 10 minutes In many cases, the customers ask for a refund because they are not satisfied with your products. Therefore, Magento 2 offers us the Credit Memo function in order to help the Magento store owners give the refund easily to their purchasers. In this Magento tutorial, we will show you how to create, print, and check […]
Read more Magento 2 Tutorials September 12, 2017 Magento 2 Customer Groups: Your Complete How-To Guide Magento 2 is a powerful e-commerce platform that provides many features to assist businesses in properly managing their online storefronts. Whether you’re looking to implement dynamic pricing, targeted promotions, personalized shopping experiences, or access control, Magento 2 customer groups are your key to e-commerce success. In this fast guide, we’ll look at why you might […]
Read more Magento 2 Tutorials September 11, 2017 How to Configure Customer Accounts in Magento 2 Welcome to our latest guide on Magento 2, a powerhouse of ecommerce functionality. Today, we’re diving into the world of customer accounts — a crucial aspect of any online store. Managing customer accounts effectively can significantly enhance the shopping experience, leading to greater customer satisfaction and loyalty. In this post, we’ll walk you through the […]
Read more Magento 2 Tutorials September 8, 2017 How To Create A Custom Widget in Magento 2 (5 minutes) What Are Widgets In Magento 2? In simple words, the widget is a content block that consists of images, text, and interactive elements. You can easily display the widget on any page (home, simple product page, grouped product page, category page,…) and any position (e.g.: page header, page footer, page bottom, …) on your site. In general, […]
Read more Magento 2 Tutorials August 29, 2017 [Fix It Series] Total Price In Wishlist Page Is $0.00 In Magento 2 PROBLEM The total price for all products is wrong in the Wishlist Page in Magento 2. Although each product has its own price, the total price equals $0.00. SOLUTIONS Let’s follow the following steps: Code: Create di.xml in etc <?xml version="1.0"?> <!-- /** * @copyright Copyright (c) 2017 www.tigren.com */ --> <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd"> <preference […]