How to login as customer in Magento 2
Enable Magento 2 log in as Customer Enable the feature In the admin page click Stores -> Settings -> Configuration.In the left panel, expand Customers and choose Login as Customer. Describe the fields in config OptionValueDescriptionEnable Login as CustomerYes / NoEnable/Disable the Login as Customer featureDisable Page Cache
How to add update product Tier Price programmatically Magento 2?
You can add/update tier price to the Product from the Admin Panel Manually by click on the Products -> Add or Edit Product -> Price (Click on Advanced Pricing). If you have to task to add tier price in the product
How to Use phtml File in Email Template in Magento 2
Magento 2 store owners send emails to customers for not only marketing purposes but also for sending the order, shipping, and invoice details. For branding purposes, the merchants use custom email templates over the default one. When a customer receives emails
How to detect Operating System on running website using JavaScript ?
To detect the operating system on running website, one can simply use navigator.appVersion or navigator.userAgent property.The Navigator app Version or userAgent property is a read-only property and it returns a string which represents the operating system information of the browser. Syntax
Send Email with Attachment in Laravel
This post will give you example of how to send email with attachment in laravel.In this article, we will implement sending attachment in mail in laravel. Alright, let’s dive into the steps.This tutorial of sending mail with attachment can be
Sending Mail with Dynamic SMTP configuration
Firstly, create a table in database and create all fields according to SMTP settings(.env file). Step:1 Create a Custom Mail Provider php artisan make:provider MailConfigServiceProvider Step:2 Fetch data from database in app/Providers/MailConfigServiceProvider