Managing an e-commerce platform requires a high degree of precision, especially when dealing with complex product structures like those found in Magento 2. One of… Read More →
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 →
Installing Magento 2 on Ubuntu remains one of the most reliable ways to build a scalable, enterprise-grade e-commerce store. Whether you’re a developer setting up… Read More →
Ubuntu 18.04 LTS (Bionic Beaver) remains a popular choice for its stability and performance, but long-time users often miss the classic “New Document” option in… 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 →
Use the following code on terminal to enable of disable – gsettings set org.gnome.desktop.background show-desktop-icons true gsettings set org.gnome.desktop.background show-desktop-icons false gsettings set org.gnome.nautilus.desktop home-icon-visible… Read More →
How to Disable Window Effects in Ubuntu | How to speed up Applications menu in Ubuntu 18.04
July 2, 2019
Disable Window Effects in Ubuntu To disable animation open terminal and use the follwoing code to disable or enable gsettings set org.gnome.desktop.interface enable-animations false gsettings… 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”])