Category: Magento
Installation of Elastic search and Magento2
Install Magento on Windows
How to disable product image preview in fullscreen when clicking in Magento 2
How to disable product image preview in fullscreen when clicking in Magento 2. If we want to disable the image moving to full-screen function. I tried to change this code in view.xml . Clear Cache to see changes, php bin/magento setup:upgrade php bin/magento setup:di:compile php bin/magento setup:static-content:deploy -f
Remove the bestseller products in Magento
The bestseller products are saved on the basis of yearly, monthly, or daily basis. So if we would need to remove those products, then we could remove it from the tables.The best-seller tables are sales_bestsellers_aggregated_yearlysales_bestsellers_aggregated_monthlysales_bestsellers_aggregated_daily By truncating of these tables we could remove the best seller products
Calling admin Panel product placeholder image to frontend.
Here we can take the object manager to get the backend placeholder url of the image. It can be done with block or $objectmanager within the phtml file. For getting the Repositories we need to add some code to pull it to our phtml file. For calling $imageHelper Lib for all repositories we can use… Continue reading Calling admin Panel product placeholder image to frontend.
Installation of LAMP
Lamp Installation Method
How to set up a Bank Transfer payment method in Magento 2?
With the Bank Transfer payment method, a store owner can accept the payment for customer’s purchase through the bank transfer in Magento 2. In this method, a customer transfers the payment for his purchase from his account to the merchant bank account. To set up the Bank Transfer as a payment method, follow the below… Continue reading How to set up a Bank Transfer payment method in Magento 2?
Using CheckBoxes for products in PLP Page -magento
Here we are trying to use checkboxes for the products and select a product individually from the list All the opertions are taking place at Magento_Catalog/product/list.phtml Here is script for making a single selection of the product: we also need to link a jqurey api of cloudflare for this functionality. it is linked using require.js… Continue reading Using CheckBoxes for products in PLP Page -magento