Entries by admin

How to Remove SID (SESSION_ID) from URL in Magento 2

First of all we have know about SID (SESSION_ID) in magento2: The SID is a “session ID”. Magento uses this to track a user’s activity within the same Magento installation. Normally, Magento powers one website and one store from one installation (database). Magento could power multiple websites with multiple stores from one installation though. The SID […]

How to get Magento low stock report

How to get Magento low stock report: In magento admin panel Go to System->Configuration->Inventoty->Product Stock Options and set Notify for Quantity Below to the required value. Now when you generate low stock report all the products having the quantity below Notify for Quantity Below value wil be dispalyed.

How to hide Discount code in Magento 2

How to hide Discount code in Magento 2 Here is the info how you can get rid off Discount code from cart page and payment page. Add below css code and it will hide discount code from the pages. For cart page : .checkout-cart-index .cart-discount {display: none;} For payment page : .checkout-index-index .payment-option._collapsible.opc-payment-additional.discount-code { display: […]

How to remove header links in Magento 2

How to remove header links in Magento 2 Please follow the below instructions : Step 1 :- Go to app/design/frontend/VenderName/ThemeName/Magento_Theme/layout/default.xml Step 2 :- Copy below Code <referenceBlock name=”wish-list-link” remove=”true”/> <referenceBlock name=”catalog.compare.link” remove=”true”/> Step 3 :- Paste this code in default.xml before body tag () and save it. It will remove the links from the header

How to remove compare link on Magento2 header

How to remove compare link on Magento2 header To remove the compare link from the header in Magento 2, you can follow these steps: First, create a custom module if you haven’t already. Inside your module, create a di.xml file under app/code/[Vendor]/[Module]/etc/frontend/ and use the Magento\Catalog\Block\Product\Compare\Link block class to remove the compare link. You can […]

How to Change Magento 2 Favicon

Today I will show you how you can change favicon on magento2 site. Follow the below steps : 1- go to Content -> Design -> Configuration 2- Click on HTML Head settings tab 3- Upload your favicon and save configuration. 4- Refresh the Cache

How to Add Google Translate in WordPress

Today I will show you how you can add google translator plugin on the wordpress site in easy steps. First of all you have install this plugin Google Language Translator After activating the plugin go to Settings » Google Language Translator to configure the plugin. Make sure that the plugin is activated. After that you […]

How to Export Magento Product Database

In this tutorial I will show you how you can export entire Magento product database. Most people can find their way to the standard Export options under System -> Import/Export, but that often doesn’t produce the results they’re expecting. A better approach is to use the Dataflow – Profiles that Magento provides. These out-of-the-box export […]

How to put Magento in Maintenance Mode only for Front end

In this tutorial we will show you how to put your Magento online store in maintenance mode only for front end site. The admin can access the site without any issue To put a Magento site in maintenance mode, you need to create an empty maintenance.flag file and upload it to the root folder of […]