Import configurable csv to a mysql database table then try to use bellow sql query which give you the duplicate simple product with same attribute… Read More →
apt-get update #Install the server. apt-get install apache2 #Install PHP 7.2 and the required extensions: add-apt-repository ppa:ondrej/php apt-get update apt-get install php7.2 libapache2-mod-php7.2 php7.2-common php7.2-gd… Read More →
You can also do it from your project root index file. Put the following file on your project index.php. error_reporting(E_ALL); ini_set(‘display_errors’, TRUE); ini_set(‘display_startup_errors’, TRUE); To… Read More →
To enable template path hints in Magento 2 follow these steps: 1. Make sure your Magento 2 is in the default or developer mode (How… Read More →
CSS :nth-child() Selector – Useful :nth-child Recipes
June 28, 2019
CSS :nth-child() Selector Select Only the Fifth Element li:nth-child(5) { color: green; } Select All But The First Five li:nth-child(n+6) { color: green; } Select… Read More →
:not() pseudo-class with multiple arguments in html
June 21, 2019
:not() pseudo-class with multiple arguments in html input:not([type=”radio”]):not([type=”checkbox”])