Read more Magento 2 Tutorials October 20, 2017 How to Configure Admin Captcha in Magento 2 As you might know, CAPTCHA (Completely Automated Public Turing test to tell Computers and Human Apart) was created to guarantee that a person is accessing your site instead of a bot/computer. In this tutorial, we will show you how to configure admin CAPTCHA in Magento 2. Step 1: Go to Configuration Go to the admin […]
Read more Magento 2 Tutorials October 12, 2017 Validating Magento 2 Composer Package To Submit To Magento Marketplace Before submitting any extensions to the Magento Marketplace, you will need to know how to validate the composer package accurately. Otherwise, there is a high possibility that your modules will be rejected since it is packaged incorrectly or doesn’t comply with Magento coding standards. In this tutorial, we will show you detailed instructions on module […]
Read more Magento 2 Tutorials October 12, 2017 Fix Magento Missing All Sale Tables But Sale Orders Are Recorded Error Many Magento developers asked for help to solve the following problem: Most of the tables in the database are missing and that includes all of the sales. Moreover, when someone makes an order, it is recorded inside the admin section but there is no record within the database. If you have the same missing all […]
Read more Magento 2 Tutorials October 10, 2017 How to Change Currency in Magento 2: A Step-by-Step Guide Managing currencies is a critical aspect of running an eCommerce store, especially if you’re selling to customers across the globe. In this article, we’ll walk you through the step-by-step process of changing and customizing currency settings in Magento 2. By the end, you’ll have all the tools you need to display the correct currencies, configure […]
Read more Magento 2 Tutorials October 9, 2017 How To Change Add To Cart Button’s Text And Link In Magento 2 In this tutorial, we will show you how to change Add to cart button’s text in Magento 2, from the regular “Add to cart” to “Find out more”. (Notes: you can change it to any phrase that you want). Moreover, when the customers click on the button, they will be redirected to a different URL […]
Read more Magento 2 Tutorials October 6, 2017 Magento 2 Error: getLastRealOrderId Doesn’t Work After Checkout With Enabled Page Cache PROBLEM: Creating a payment gateway module in order to redirect to the gateway page after checkout. However, while page cache is enabled the method for getting the last real order id returns null (it is used to get order id from the session). So, how to use the module without disabling page cache? SOLUTIONS: There […]
Read more Magento 2 Tutorials October 5, 2017 How To Set Up Magento 2 Tax Rules in 10 Minutes or Less Tax rules are the essential aspects of e-commerce store management in Magento 2. Whether you’re a seasoned Magento user or new to the platform, understanding tax configuration is crucial for accurate tax calculations on your online store. Tax rules are a combination of Product and Customer Class, Tax Zone, and Rate. Every customer will be […]
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 […]