2016 Ecommerce Platforms Analysis and Comparative Report 12 Feb, 20164 CommentsShare The market of ecommerce platforms is changing constantly since ecommerce itself develops steadily embracing new branches, areas and stores. Ecommerce Platforms Market Share Evolution Some platforms decline while other...
Month: April 2016
Layouts and forms on Magento 2 admin
http://www.maximehuran.fr/en/layouts-and-forms-on-magento-2-admin/ We have to create a layout before create the form : app/code/Maxime/Jobs/view/adminhtml/layout/jobs_department_edit.xml Put this little content : <?xml version="1.0"?> <page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd"> <update handle="editor"/> <body> <referenceContainer name="content"> <block class="MaximeJobsBlockAdminhtmlDepartmentEdit" name="jobs_department_edit"/> </referenceContainer> </body> </page> We define a block inside, so...
MAGENTO 2 HOW TO CREATE CUSTOM QUERY
Magento 2 How to create custom query that is the question sometime is popped up on your head. Here is how I create my own custom queries in Magento 2. Currently, I figured out two ways : 1/ Take advantage of using Magento...
Magento 2How to create the configuration via backend for a custom module
How to create the configuration via backend for a custom module Published at 21 Aug 2015 In this post, I will introduce you how to create the configurations via Magento 2 backend. We will continue using the Tutorial_SimpleNews module for...
Magento 2: CRUD Models for Database Access
Create Module ulsestorm_ToDoCrud module Generating Crud Files As previously mentioned, we’re going to create a model for a “To Do” item in our imaginary productivity application. We’ll want this model to have two main fields — the text of the...
Magento2 plug-ins
Limitations You cannot use plug-ins for: Final methods / classes Non-public methods Class methods (such as static methods) __construct Virtual types Declare a plug-in You declare a plugin for an object in the di.xml file for a module: <config> <type...
MAGENTO 2: HOW TO MAKE CUSTOMER ATTRIBUTE ?
MAGENTO 2: HOW TO MAKE CUSTOMER ATTRIBUTE ? Since Magento 2 is pretty close to release we can review how the adding of custom attribute process has been changed. Today we will make Magento 2 extension which adds customer...
@var tag to document the “Type” of properties,
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...
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...