Magento 2: How to add Google Font

Magento 2 Developement

You might already check Include static resources (JavaScript, CSS, fonts) article by magento team. They state that to add google font you need to update /Magento_Theme/layout/default_head_blocks.xml with <link src=”http://fonts.googleapis.com/css?family=Montserrat” src_type=”url” /> But as a result it is not working. Correct code is <link src=”https://fonts.googleapis.com/css?family=Montserrat” src_type=”url” rel=”stylesheet” type=”text/css” /> It wont work without additional parameters. Google […]

read more

Error Reporting In Magento 2

Magento 2 Developement

If you got similar message you might be curios how to enable error reporting in magento 2 instead of checking log file in /var/report folder. There has been an error processing your request Exception printing is disabled by default for security reasons. Error log record number: XXXXXXXXXXXX By default Magento 2 run in “default” mode […]

read more

Magento 2 Command-Line Interface (CLI) Commands List

Magento 2 Developement

Magento 2 comes with built-in powerful command-line interface tool. It allows you to perform wide variaty of tasks including installation, configuration, database backups, compiling LESS etc. If you missing a feature, you can extend it with your own commands set. You will find using magento 2 command-line interface (CLI) commands pretty handy. Tool location: /[magento_root]/bin/magento. […]

read more

Magento 2 Release Date

Magento 2 Developement

Magento 2 release date was announced in Imagine 2015. Magento Merchant GA should be released in Q4 of 2015. Here is the complete list of magento 2 roadmap milestones. Current available release is Magento 2 Merchant Beta. As it is stated on magento blog – this release is pretty close to Magento 2 GA. GA […]

read more