Posts

How to Create a Locker.bat File

 cls @ECHO OFF title Folder Private if EXIST "HTG Locker" goto UNLOCK if NOT EXIST Private goto MDLOCKER :CONFIRM echo Are you sure you want to lock the folder(Y/N) set/p "cho=>" if %cho%==Y goto LOCK if %cho%==y goto LOCK if %cho%==n goto END if %cho%==N goto END echo Invalid choice. goto CONFIRM :LOCK ren Private "HTG Locker" attrib +h +s "HTG Locker" echo Folder locked goto End :UNLOCK echo Enter password to unlock folder set/p "pass=>" if NOT %pass%== Your_Password goto FAIL attrib -h -s "HTG Locker" ren "HTG Locker" Private echo Folder Unlocked successfully goto End :FAIL echo Invalid password goto end :MDLOCKER md Private echo Private created successfully goto End

How to create Downloadable Products in Magento 2?

Image
§       A downloadable product is a type of product that allows shoppers to get it as a file, such as an eBook, music, video, software application, or update. You can put an album on sale and sell each song individually. §       In addition, you can use a downloadable product to deliver an electronic version of your product catalog. It is very easy to create the downloadable product for your Magento 2 store. §       In the settings of the downloadable product, you can require customers to get link only when they have already logged in, or you will send the download link via email and allow them to share with anyone needing. To create Download Product in Magento 2 as the following steps: §       Step 1: Select the Product Type §       Step 2: Select the Product Template (Optional) §       Step 3: Fill out the Require...

How to create Grouped Products in Magento 2?

Image
§        Gather many simple standalone products into a group which is called Group Product, a type of Magento products. It is possible to base on the variation of  simple product  to create a set of different products. You can consider the purpose to build a group product like a set of Cloths (Group Product). §       If you want to add Group Product then first you can create the 3 Simple Product 1)       T-shirt 2) Pant 3)shoes §        Thus, creating Grouped Product is the helpful solution to enhance customer’s shopping experience and give the items related to each other that the customer wants to add to the order. Each product can be shown and sold separately or together in the group as needed; however, they are definitely listed separately in the shopping cart. How to create Grouped Product in Magento 2 §      ...