Select the last items with nth-child in CSS
August 27, 2019
:nth-child Select the first list item li:nth-child(1) { } Selects the second element in a list li:nth-child(2) { color: lime; } Selects every fourth element… Read More →
August 27, 2019
:nth-child Select the first list item li:nth-child(1) { } Selects the second element in a list li:nth-child(2) { color: lime; } Selects every fourth element… Read More →
August 21, 2019
hover menu toggle with jQuery Go to the link and download superfish. Get the “superfish.min.js” from the “dist/js” folder https://superfish.joelbirch.design/ And also create another file… Read More →
August 18, 2019
Go to Admin > Stores > Configuration > Advance > Admin > Security Set “Admin Account Sharing” to Yes
August 17, 2019
Run the following code to fix the issue.. sudo -u www-data php bin/magento setup:di:compile
August 15, 2019
Magento 2 No Payment methods If you are using custom theme, and have override the file checkout_index_index.xml, then comment the file or remove it to… Read More →
August 14, 2019
include() all PHP files from a directory <?php foreach (glob(“system/lib/*.php”) as $filename) { include $filename; } ?>