In Magento ** * Copyright © 2016 Magento. All rights reserved. * See COPYING.txt for license details. */ // @codingStandardsIgnoreFile ?> <?php /** @var MjwebHidepriceBlockHiderealprice $block */ ?> <?php Syntax @var Description The @var tag defines which type of...
Year: 2016
Powering Magento with Ngnix and PHP-FPM
Powering Magento with Ngnix and PHP-FPM Renato Medina February 28, 2016 Powering Magento with Ngnix and PHP-FPM2016-03-15T22:48:16+00:00Magento, Nginx No Comment Anyone looking for a simple Magento hosting solution should consider LAMP (Linux/Apache/ MySQL/PHP). However, there are cases when Apache with...
How To Add JavaScript In Magento 2.0
How To Add JavaScript In Magento 2.0 BY BLOG@RASBOR.COM ON MARCH 18, 2016 JavaScript is vital for making the storefront of your client interactive and dynamic. Sometimes while working with Magento 2.0 you will want to add JavaScript code. This...
THE TOP 10 MAGENTO 2 CONCEPTS YOU NEED TO KNOW
THE TOP 10 MAGENTO 2 CONCEPTS YOU NEED TO KNOW By Chris Nanninga Posted March 31, 2016 In Development, Magento, Magento Development 2 0 Are you a Magento developer who has yet to make the dive into Magento 2?...
Magento 2 Grunt watch
Installing and configuring Grunt Magento has built-in Grunt tasks configured, but there are still several prerequisite steps you need to take to be able to use it: Install node.js to any location on your machine. Install Grunt CLI tool globally....
Create a theme Magento 2
Create a theme directory To create the directory for your theme: Go to <your Magento install dir>/app/design/frontend. Create a new directory named according to your vendor name: /app/design/frontend/<Vendor>. Under the vendor directory, create a directory named according to your theme....
Magento 2 static view files deployment
The term static view file refers to the following: “Static” means it can be cached for a site (that is, the file is not dynamically generated). Examples include images and CSS generated from LESS. “View” refers to presentation layer (from...
Magento2 multiple Magento stores and websites
Set values in an entry point script If necessary, copy the existing index.php entry point script for your website or store view and add to it the following: <?php $params = $_SERVER; $params = '<code>'; $params = '{store|website}'; $bootstrap =...
Magento Caching
1)su <Magento file system owner> -s /bin/bash -c <command> 2) export PATH=$PATH:/var/www/html/magento2/bin View the cache status magento cache:status Enable or disable cache types Magento cache:enable ... magento cache:disable ... Clean and flush cache types magento cache:clean ... magento cache:flush ......
How To Install and Use Composer on Ubuntu 14.04
Pour installer composer , ouvrez un terminal et tapez les lignes suivantes : curl -sS https://getcomposer.org/installer | php sudo mv composer.phar /usr/local/bin/composer.phar alias composer='/usr/local/bin/composer.phar'