You can install module in magento in two ways: via composer and manual installation. If you no longer need a certain extension you may wish to uninstall it.
If you installed it manually…
Author: elpas0
Magento 2: How to add Google Font
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 moreCodeCanyon Extended Support FAQ
The Program In September of 2015, CodeCanyon (aka “Envato”, aka “ThemeForest”), launched a new program for support: http://marketblog.envato.com/releases/get-ready-for-the-new-item-support-policy-launching-september-1st/ and followed this up with an additional announcement here: http://marketblog.envato.com/releases/item-support-policy-and-functionality-launched/ and an official policy here: http://codecanyon.net/page/item_support_policy What this means for customers who are part of the NWDthemes family: Extended Support is not related to your Usage License […]
read moreMagento 2 : When exactly to use php bin/magento setup:upgrade
If you enabled one or more modules, then you will need to run magento setup:upgrade to update the database schema. php bin/magento module:enable Nwdthemes_Module php bin/magento setup:upgrade First line simply adds your module to the app/etc/config.php. Please note that your magento will crash until you run second command. Second line trigger setup scripts of all […]
read moreError Reporting In Magento 2
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 moreSlider Revolution: How to insert HTML slider in Magento 2
Tutorial requirements: slider Revolution 5.x installed on magento 1.x. magento 2 installation This tutorial assumes that you have slider revolution for magento 1.x. You will need to export slider from that version in order to use it in magento 2. Do not upload magento 1.x extension to magento 2!. Login to magento 1.x admin and […]
read moreMagento 2 Setup Compile Errors
Magento 2 Command-Line Interface (CLI) Commands List
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 moreNWDthemes magento extensions updates
We glad to inform about new magento extensions updates. NwdAjax – Ajax Cart magento extension version 1.2.0 fixed: bug with add to cart on product page and quick view popup fixed: 1.9.2.4 “cannot remove item” bug NOTE: If you are using custom theme and have “cannot remove item” bug – please check SUPEE 7405: Cannot […]
read moreIncrease PHP memory limit
Sometimes you might get “Fatal error: Allowed memory size of …” PHP error. Usually this means that you run out of memory. It is recommended to double check your code and profile your app with xDebug. It should tell you which function is called how often and how much memory it eats. However, the code […]
read more