How to Set up Store Information in Magento 2

How to Set up Store Information in Magento 2

set up store information in Magento 2 with the steps shown below:

Steps to set up store information in Magento 2:

Steps to set up store information in Magento 2  
  1. Login to Magento 2 admin panel
  2. Navigate to Stores > Settings > Configuration
  3. Select General under General
  4. Expand Store Information and fill these details
    1. Store Name – Enter the name of the store
    2. Store Phone Number – Enter the phone number of the store
    3. Store Hours of Operation – Enter the hours of operation of the store. For instance, Mon-Sat, 9 AM – 5 PM IST.
    4. Country – Select the country of business location
    5. State – Select the state or region
    6. ZIP/Postal Code – The zip or postal code of the city
    7. City – Enter the city
    8. Street Adress – Enter the street address
    9. Street Address Line 2 – Use this field if the address is too long
    10. VAT Number – Enter the VAT number
  5. Save the configuration
That’s it. Any doubts about the Magento 2 store information? If so, please mention them in the Comments section below. I’d be glad to help you out. Also, do share the post with the Magento community via social media. Thank you.]]>

How to Enable Magento 2 Contact Us Page

How to Enable Magento 2 Contact Us Page

Contact Us and About Us are two of the most important pages for every website to allow customers to contact and learn about the business respectively. Allowing customers to ask queries from the contact us page contributes to enhancing the customer experience of the store. When customers need help, they can reach out to you instantly. The Magento 2 Contact us page can be accessed from the footer by any user. When a customer submits the contact form to the store, a thank you message is displayed. Note: The default Contact Us form in Magento 2 is rendered directly from code rather than from a CMS page.

Steps to Enable Magento 2 Contact Us Page:

  1. Log in Magento 2 Admin Panel
  2. Navigate to Store > Settings > Configuration
  3. Expand the General section and select Contacts
  4. Enable Contact Us
  5. Click on Save Config
  6. Expand the Email Options Email Options
    1. Send Emails To: Write an email address where the message from the Contact Us form is sent.
    2. Email Sender To: It is used for store identity that appears as the sender of the message from Contact Us form. For instance: Custom Email 2.
    3. Email Template: Set email template to Contact Form.
  7. Click on Save Config
Once done, you can check the Contact Us link in the footer area: Contact Us link in Footer area This is how the contact us page in default Magento 2 looks like: Contact Us Page in Magento 2   If you have any questions, feel free to ask in the Comments section below. I’d be happy to help. Also, do share the tutorial with the Magento community via social media. Thanks.]]>

How to Set Default Pages in Magento 2

How to Set Default Pages in Magento 2

default pages in Magento 2.

Method to Set Default Pages in Magento 2:

  1. Log in to Magento 2 Admin Panel
  2. Navigate to Store > Settings > Configuration
  3. Expand the General section and visit Web
  4. Expand the Default Pages section Method to Set Default Pages in Magento 2
    1. Default Web URL – Enter default value cms or any other value as per requirement
    2. CMS Home Page – Select Home Page of your Magento 2 website
    3. Default No-Route URL – The predefined value is “cms/index/noRoute”. Enter other value as per your requirement.
    4. CMS No Route Field – It appears when a “404 Not Found” error occurs.
    5. CMS No Cookies Page – It refers to the CMS page that is shown when cookies are disabled in the browser.
  5. Allow or Disallow Breadcrumbs (It appears at the top of all CMS as navigation)
5. Click on Save Config That’s it. If you have any questions, feel free to ask in the Comments section below. I would be happy to solve your queries. Do share the post with the Magento community via social media. Thanks.]]>

How to Manage Newsletter Subscriptions in Magento 2

How to Manage Newsletter Subscriptions in Magento 2

manage newsletter subscriptions in Magento 2 store will guide you:

Managing Newsletter Subscriptions in Magento 2:

  1. Manage Newsletter Subscriptions for a customer:

      1. Login to admin panel
      2. Navigate to Customers > All Customers
      3. Open the customer is edit mode. Customer in Edit Mode
    1. Click the Newsletter in the left panel
    2. Select or clear the Subscriber to Newsletter checkbox. Newsletter Subscription Checkbox
    3. Save the customer.
  2. Cancel a subscription from the Newsletter Subscribers list:

    Cancel a subscription from the Newsletter Subscribers list
    1. Navigate to Marketing > Communications > Newsletter Subscribers
    2. Select the customers with status “Subscribed” for whom the subscription is to be cancelled
    3. Set the Action control to Unsubscribe
    4. Click Submit
    The status is now changed to “Unsubscribed” Status changed to Unsubscribed
  3. Export the list of subscribers:

    Newsletter subscriber grid
  1. In the Newsletter Subscribers grid, use the filter controls to include only records with a Status of Subscribed and for the appropriate website, store, or store view
  2. You can export to either CSV or XML
  3. Save the file
That’s it for Magento 2 newsletter subscription. Any doubts about managing subscriptions in Magento 2 can be mentioned in the Comments section below and I’d help you right away. Also, do share the post with fellow Magento 2 store admins via social media. Thank you.]]>

How to Install Magento 2 Data Migration Tool

install Magento 2 data migration tool. It is the official tool by Magento released to help merchants migrate from Magento 1 to Magento 2.

Requirements to use Data Migration Tool:

You need to use the same released version of Magento 2 and the Data Migration Tool. For example, If you using Magento 2.3.5, you need to use the data migration tool of that version too. You can use one of the eight methods available to check Magento version.

Method to Install Magento 2 Data Migration Tool:

If you have downloaded the Magento using Composer metapackage, run the below command:

$ php <magento_root>/bin/magento –version If you cloned the Magento 2 Github repository, run these commands: $ cd <your Magento 2 clone directory> $ git branch Now, if you are in the “develop” branch, do not forget to change to a released branch before going ahead. Also, install Magento by now. Visit Releases of the Data Migration Tool GitHub repository to find available released versions.

Installing Magento 2 Migration Tool

  1. Install from repo.magento.com

    1. Login to Magento servers or switch to Magento file system owner
    2. Change to Magento 2 root directory
    3. Run the below commands $ composer config repositories.magento composer https://repo.magento.com $ composer require magento/data-migration-tool:<version>Here, <version> is the version of the Magento 2 codebase.
    4. Enter the authentication keys. Your username is the public key and password is the private key.
  2. Install from GitHub

    1. Login to Magento servers or switch to Magento file system owner
    2. Change to Magento 2 root directory
    3. Run the below commands $ composer config repositories.data-migration-tool git https://github.com/magento/data-migration-tool $ composer require magento/data-migration-tool:<version>Here, <version> is the version of the Magento 2 codebase.

Check the version of the installed Magento Data Migration Tool:

  1. Change to your Data Migration Tool directory: <vendor>/magento/data-migration-tool.
  2. Open composer.json in a text editor.
  3. The version entry in that file is the version of the Data Migration Tool.
Any doubts about the method to install the Magento 2 migration tool? If so, feel free to mention them in the Comments section below. I’d be happy to help. Also, do not forget to share Magento 2 data migration tool tutorial with the store merchants via social media. Thank you.]]>

Magento 2 Salable Quantity vs Quantity – Know the Difference

Magento 2 Salable Quantity vs Quantity – Know the Difference

difference between Magento 2 salable quantity and quantity. If you have downloaded the Magento 2.3.3 version and checked, you’ll see the product grid displays the salable quantity and quantity: Difference Between Magento 2 Salable Quantity and Quantity Let’s understand these two terms and their difference in Magento 2.

Difference Between Magento 2 Salable Quantity and Quantity:

Salable Quantity is the sum of available resources, grouped in stocks. Unlike in previous versions of Magento 2, the quantity of a product does not decrease when the customer places an order. Instead, the salable quantity gets reduced. While. the quantity of the product decrease only after shipping is completed. The salable quantity is updated when:
  • The physical quantity in warehouse changes
  • A new order is placed by the customer
Magento 2 MSI removes the limitation of relying on a single inventory system only. Now, the merchants can manage their inventory in more than one locations to accurately reflect their physical inventories without any 3rd party extensions! The salable quantity is stored in view. When a customer places an order, the salable quantity is reduced. Note that, the quantity is not decreased even when the order is placed. Now when the admin creates the shipment for the order from the backend, we can see that the quantity is reduced as well. Any doubts about salable quantity and quantity in Magento 2? If so, please mention them in the Comments section below. Also, do share the solution with the Magento community via social media. Thank you.]]>