How to Remove Newsletter Section from the footer Magento 2?

When You check the native Magento shop, You have to display the Newsletter Subscription Text box in the footer area of the site.

You can Disable/Remove it from the Admin panel.
1. Stores -> Configuration -> Customers -> Newsletter Tab
2. Click on General Options Section
3. Set Enabled to No. Continue reading “How to Remove Newsletter Section from the footer Magento 2?”

How to get Forgot Password Url in Magento 2?

You can retrieve the forgot password URL from the Customer Module of Magento.

The customer module contains the Forgot password feature for the Account Section. If you have created an account with Magento and you forgot the password and want to reset the password, You can get forgot password page URL by just instantiate the Url Class of Customer Module. Continue reading “How to get Forgot Password Url in Magento 2?”

How to Check Product type is bundle by sku in magento 2?

You can check the Product type based on the SKU. If you have only product SKU and want to know about product type Bundle, you can know it easily.

First Load the Product repository by Product SKU, Call the getTypeId() method from the object and match it with Type class predefined product type constant. Continue reading “How to Check Product type is bundle by sku in magento 2?”