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 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”])
Attribute selectors – CSS [attribute*=value] Selector | Select Element By Specific attribute value
June 16, 2019
Use the following code to Select Element By Specific attribute value [class^=”top”] { background: yellow; } or[class*=”me”] { background: yellow; } It doesn’t have to… Read More →
If you operate a dual-boot system with both Windows and Linux installed on your computer, you have likely encountered a frustrating and persistent problem: the… Read More →
Sublime Text Refresh Folder Hotkey
June 9, 2019
Sublime Text Open Preference > Keybinding and add the following line. { “keys”: [“f5”], “command”: “refresh_folder_list” }
Understanding Magento 2 File System Permissions and Ownership Magento 2 installation on Ubuntu servers running Apache requires precise file system permissions and ownership configuration to… Read More →
How to Set AllowOverride all apache2 Ubuntu 18.04 | Magento 2 not loading CSS and JavaScript
June 9, 2019
Open the file with sublime to Set AllowOverride all apache2 Ubuntu 18.04 sudo subl /etc/apache2/apache2.conf Find the line “AllowOverride None” and replace with “AllowOverride All”… Read More →
In the ever-evolving landscape of web development, where projects are deployed across shared hosting environments, cloud servers, and local machines with varying configurations, a seemingly… Read More →
In PHP, there are several ways to retrieve the name of the current method or function from within its own scope. This capability is particularly… Read More →






