Thursday 22 January 2015

Set / Change Meta title and description in Magento 2


SET PAGE META VIA BLOCK


You need to place this code inside your _prepareLayout() function in your Block file. Below is the complete function.

public function _prepareLayout()
{

   //set page Meta's
   $this->pageConfig->setKeywords('Hello Metakeyword');
   $this->pageConfig->setDescription('Hello Metadescription');

   return parent::_prepareLayout();

} 

SET PAGE META VIA LAYOUT XML

Open your xml file inside your layout folder and place this code above the body tag.

<head>
    <meta name="description" content="XML Hello metadesc"/>
    <meta name="keywords" content="XML Hello keywords"/>

</head>

NOTE:  When you try to add title via both the methods first preference will be given to the block method(php file).

Sunday 18 January 2015

Set page title on Magento 2

I was working on creating a simple Hello world module in Magento 2. Tutorials from other websites, there was only instructions to create the module and then I found the page title was empty.

I did a little search in the core files and found the code to set page title.

SET PAGE TITLE VIA BLOCK

$this->pageConfig->getTitle()->set(__('Hello World'));

You need to place this code inside your _prepareLayout() function in your Block file. Below is the complete function.

public function _prepareLayout()
{

   //set page title
   $this->pageConfig->getTitle()->set(__('Hello Index Test'));

   return parent::_prepareLayout();

} 

SET PAGE TITLE VIA LAYOUT XML

Open your xml file inside your layout folder and place this code above the body tag.

<head>
    <title>SAMPLE TITLE</title>

</head>

NOTE:  When you try to add title via both the methods first preference will be given to the block method(php file).

Monday 12 January 2015

Set/Enable developer mode in Magento 2

Magento 2 is already out for developers for testing and contributing improvements. After installing magento 2, you need to enable the Developer mode to show the errors on browser. Else, the errors will be logged into a separate file under var/report.

There are multiple ways to enable a developer mode
Via Console
Run the following command "php bin\magento deploy:mode:developer"

Edit env.php
'MAGE_MODE' => 'developer'  add this line on your env.php file below 'x-frame-options'

OR
Just add this below line on your index.php file
$_SERVER['MAGE_MODE'] = 'developer';

Place the code above on line 1. Above all the codes which was there already.

Wednesday 7 January 2015

Magento 2 Installation Guide.

Magento 2 is under development phase and there are beta release on Github which are free to explore. You can download Magento 2 here.

INSTALLATION

* Once you have downloaded magento2 zip file from Github, you can extract it to your htdocs folder(in xampp).

* Next thing is to Install the Composer. Without installing composer we cannot run Magento 2.

* Steps for Installing Composer on Windows machine can be found here. Follow steps from 1 to 5 if  latest xampp version is installed.

* Step for Installing Composer on Linux machine can be found here.

* Once Composer is installed properly, Now you can install magento 2. Find the composer.JSON file inside your extracted magento 2 folder and Right click on it and select composer Install.

* Now the composer will install the necessary library files and you are good to go.

* Run the file via your Browser like the usual magento Installation.


NOTE: Magento 2 requires PHP version 5.4 or higher.

Complete installation instructions with Screenshots is available on Magestore website.

You can get the Usefull links to study and get to know more about Magento 2 from my next post. Click here.

Magento 2 study guide & useful websites to get to know about it


The new version of Magento has a significant changes in the architecture when comparing to its 1.* versions. I have started learning Magento 2 and found some of the websites that explains the changes and improvements very clearly. These are from the Masters of Magento.

Am not going to explain the changes that are in Magento 2, instead I will give you all the Links that are useful for you to explore and learn it by yourself.

OFFICIAL WIKI
It's good to have the Magento have their own well formatted Wiki for Magento 2. The Wiki explains all the technology changes in Magento 2. You can go to the Official WIKI page here.

THE MASTERS

I have also found other websites that are extremely useful to study magento 2. They are,
* The Alan Kent's Blog. (Magento's chief architect)
* The Inchooers website.
* Magestore's website.
* An Awesome explanation for Dependency Injection(DI) can be found here. The website explains the DI for Symphony, Yet the concept for the DI is the Same for all. More explanation for DI can be found from the Jeff More Presentation.

START EXPLORING WITH THESE INITIATIVES

Magestore have developed a banner module for Magento 2. You can visit their website here to View the Demo and download the banner module.

You can get the THEME for Magento 2 here. Uber theme offers this free Magento 2 theme and the Live Demo of the theme can be found on the link provided.

SAMPLE DATA FOR MAGENTO 2

Uber theme also provides the Sample data for magento 2. You can visit their website here. This website clearly explains the installation steps and configuring magento 2 with Screenshots.

Go crazy on New Magento 2.