Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Save more on your purchases! discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Free Learning
Arrow right icon
Magento 2 Development Cookbook
Magento 2 Development Cookbook

Magento 2 Development Cookbook: Over 60 recipes that will tailor and customize your experience with Magento 2

eBook
€8.99 €32.99
Paperback
€41.99
Subscription
Free Trial
Renews at €18.99p/m

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
OR
Modal Close icon
Payment Processing...
tick Completed

Billing Address

Table of content icon View table of contents Preview book icon Preview Book

Magento 2 Development Cookbook

Chapter 2. Working with Products

In this chapter, we will cover the following recipes:

  • Configuring the catalog defaults
  • Working with attribute sets
  • Working with product types
  • Adding social media buttons
  • Embedding an HTML object
  • Changing the URL of a product page

Introduction

How products are displayed in the frontend is very important for making a web shop with good usability. Convincing the visitors to buy something from the shop is the main target of every shop owner.

Products need to be set in such a way that a visitor can quickly find what he is looking for. With good product content, a shop looks reliable, due to which a visitor is more likely to buy something.

In this chapter, we will explain what you can do to display products in your shop, and we will see some extra things, such as a video and add to cart links, to raise conversion from a prospective buyer to an actual buyer.

The goal of this chapter is to make your shop more user-friendly with just a little development.

Configuring the catalog defaults

One of the first things is to configure some default catalog settings to the preferred values. We will cover all the configuration values that are possible in a Magento 2 installation.

We will go through the available configurations and change some values to the recommended settings.

Getting ready

Open your frontend and log into the backend in a separate browser tab. We will modify some configuration values to the recommended settings. When changing a configuration value, we can check what happens in the frontend.

How to do it

In the next steps, we will take a look at the catalog settings:

  1. In the backend, navigate to Stores | Settings | Configuration. Open the Catalog menu, as we can see in the following screenshot:
    How to do it
  2. Open the Product Fields Auto-Generation section. In this section, we can configure the behavior of the generation of SKU and metadata. When we add the following values for the Mask for Meta Keywords, the SKU, name, and the string "Magento&quot...

Working with attribute sets

Magento has a flexible system to work with products. When you sell, for example, a board game or a computer, the specifications of each product are different. For a board game, information such as age and duration is relevant. For a computer, a lot of technical specifications are relevant, such as the CPU power, disc size, and so on.

To cover this, Magento 2 comes with a system called product templates, which can be compared with attribute sets in Magento 1.

A product template is a specification of product attributes that you can assign to products.

Getting ready

In the backend, we will use the pages Stores | Attributes | Product and Stores | Attributes | Attribute Set.

We will create a newproduct attribute and a new product template (such as an attribute set) that we can use in new products.

How to do it

In the following steps, we will create an extra product attribute that we can use in a product template:

  1. Navigate to Stores | Attributes | Product in the backend,...

Working with product types

In Magento 2, it is still possible to work with different types of products. The standard product is a simple product, which is used to sell basic products, but there are more types available, such as products, where you can choose a size and other options, or download products, virtual products (such as a license), and product combinations.

Getting ready

In this recipe, we will create a configurable product, for example, you want to buy a pair of shoes where you can choose their size and color. Open the Magento backend and navigate to Products | Catalog.

How to do it

In the following steps, we will create a product where we can specify a size on the product detail page:

  1. Navigate to Products | Catalog, click on the arrow near the Add Product button, and choose Configurable Product as shown in the following screenshot:
    How to do it
  2. Choose a name, SKU, and price for the product.
  3. The next step is to decide the attribute on which we want to configure our product. Scroll down through...

Adding social media buttons

These days, an increasing number of people are sharing their minds through different social media, such as Facebook, Twitter, and many more.

Every social media platform has the option to share pages on their platform. The most famous examples of this are the share buttons, such as the Like button of Facebook, the Tweet button, the Google Plus button, and many more.

Getting ready

In this recipe, we will add share buttons for the following platforms. You can take a look at the developer documentation of each platform as a preparatory step:

To show a button on every product page, we have to do some code changes. Ensure that you have access to the code with your IDE.

How to do it

The following steps show you how to add social media buttons to the description of your product:

  1. Open the page of the...

Embedding an HTML object

In a product description, we can add HTML tags so that we can use the <object> tag. With an <object> tag, we can embed widgets, such as a YouTube video, social widgets, and more.

In this recipe, we will focus on how to add a YouTube video in a product description.

Getting ready

Go to http://www.youtube.com, and choose a video that you want to show on the product detail page.

How to do it

The next steps shows you how to embed a YouTube video on a product detail page.

  1. On the YouTube video page, click on the Embed button. When you click this button, the following screen shows up:
    How to do it
  2. Copy the HTML code and paste it in the description of the product.
  3. Save the product.
  4. Go to the product in the frontend. You will see the video on the Product page.

How it works

The ability to use HTML tags in product descriptions gives a lot of flexibility for this field. It is possible to use a WYSIWYG editor for the content because this allows us to use widgets, such as a YouTube video...

Introduction


How products are displayed in the frontend is very important for making a web shop with good usability. Convincing the visitors to buy something from the shop is the main target of every shop owner.

Products need to be set in such a way that a visitor can quickly find what he is looking for. With good product content, a shop looks reliable, due to which a visitor is more likely to buy something.

In this chapter, we will explain what you can do to display products in your shop, and we will see some extra things, such as a video and add to cart links, to raise conversion from a prospective buyer to an actual buyer.

The goal of this chapter is to make your shop more user-friendly with just a little development.

Left arrow icon Right arrow icon

Key benefits

  • • Solve common problems encountered while extending your Magento 2 store to fit your business needs
  • • Delve into the exciting and enhanced features of Magento 2 such as customizing security permissions, intelligent filtered search options, easy third-party integration, among others
  • • Learn to build and maintain a Magento 2 shop via a visual-based page editor and customize the look and feel using Magento 2’s offerings on the go

Description

With the challenges of growing an online business, Magento 2 is an open source e-commerce platform with innumerable functionalities that gives you the freedom to make on-the-fly decisions. It allows you to customize multiple levels of security permissions and enhance the look and feel of your website, and thus gives you a personalized experience in promoting your business.

Who is this book for?

This book is for every developer who has knowledge of PHP and wants to extend or customize the functionality of their Magento 2 system. If you have prior experience of the Magento platform, you will find this book useful in exploring the advanced features.

What you will learn

  • • Install a Magento 2 shop with sample data
  • • Upgrade the data in a Magento 1 shop to a Magento 2 shop
  • • Manage the look and feel of the shop with custom themes
  • • Extend the shop with custom functionality such as forms, grids, and more
  • • Accelerate your store with some performance tools
  • • Build and structure your own shipping module
  • • Test your shop with automated tests and manage your product display

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : Dec 28, 2015
Length: 304 pages
Edition : 1st
Language : English
ISBN-13 : 9781785889141
Languages :
Concepts :
Tools :

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
OR
Modal Close icon
Payment Processing...
tick Completed

Billing Address

Product Details

Publication date : Dec 28, 2015
Length: 304 pages
Edition : 1st
Language : English
ISBN-13 : 9781785889141
Languages :
Concepts :
Tools :

Packt Subscriptions

See our plans and pricing
Modal Close icon
€18.99 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
€189.99 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just €5 each
Feature tick icon Exclusive print discounts
€264.99 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just €5 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total 110.97
Magento 2 Cookbook
€36.99
Magento 2 Development Cookbook
€41.99
Magento 2 Developer's Guide
€31.99
Total 110.97 Stars icon
Banner background image

Table of Contents

12 Chapters
1. Upgrading from Magento 1 Chevron down icon Chevron up icon
2. Working with Products Chevron down icon Chevron up icon
3. Theming Chevron down icon Chevron up icon
4. Creating a Module Chevron down icon Chevron up icon
5. Databases and Modules Chevron down icon Chevron up icon
6. Magento Backend Chevron down icon Chevron up icon
7. Event Handlers and Cronjobs Chevron down icon Chevron up icon
8. Creating a Shipping Module Chevron down icon Chevron up icon
9. Creating a Product Slider Widget Chevron down icon Chevron up icon
10. Performance Optimization Chevron down icon Chevron up icon
11. Debugging and Unit Testing Chevron down icon Chevron up icon
Index Chevron down icon Chevron up icon

Customer reviews

Rating distribution
Full star icon Full star icon Full star icon Full star icon Half star icon 4.8
(5 Ratings)
5 star 80%
4 star 20%
3 star 0%
2 star 0%
1 star 0%
mrGott Mar 15, 2016
Full star icon Full star icon Full star icon Full star icon Full star icon 5
When you start with Magento you need a good handout, all-in-one resource that gets you started. Magento 2 Development Cookbook includes great recipes. After checking out the contents of the book I couldn’t wait to get my hands on it and put those recipes to work.In my opinion a great book is the one that covers all the basics, gives you good solid ground and code that will help you get started.Magento 2 Development Cookbook includes great recipes. It was very important to take a look on how to build a shipping module for Magento 2. Most of my clients use Georgian Post as their primary shipping method, hence I need a custom shipping module. And once again I would like to thank the author. None of the articles I have read have bothered to explain as much as this cookbook does. And the part I loved most was having ability to add Tracking Number. Actually it’s all you need with the shipping module.I also believe that this is a kind of a book that has to always stay on your desk or desktop, depending on whether it’s a hard copy or PDF. I’ll be using this as a handout which I’ll refer to in every single project, every time I’ll be building a theme or a module from ground up.I think that this one will be a good investment for anyone who wants to get started with Magento 2. It will help you right away, and will be helpful each time you are cooking for Magento 2.Last but not least, I have to mention - “who is this book for”?Magento 2 Development Cookbook covers lots of “how to do” stuff. I believe this book is for anyone. It’s for beginners and experienced developers. This book concentrates on code and specific examples. For me, as a developer it’s always more efficient to take a look at a code and read it. Eventually this book will save your time, a lot!
Amazon Verified review Amazon
Vinay Mar 04, 2016
Full star icon Full star icon Full star icon Full star icon Full star icon 5
I like the book very much....Recommend it to everyone.
Amazon Verified review Amazon
Marius Dermiaha Jan 30, 2016
Full star icon Full star icon Full star icon Full star icon Full star icon 5
From this book you should start learning Magento 2. I especially recommend it to people who are experienced Magento 1 and who want to quickly master new Magento version. In explaining the mechanisms Magento 2 often refers to their counterparts in the previous version. The book is written concisely and concretely. With things that could be improved it is in Chapter 6. "Magento Backend" in context of the creation of grid also adding CRUD operations associated with it and handle the relationship database. In summary, currently it is the best book of the basics Magento 2 for developers.
Amazon Verified review Amazon
ERIK THE READER Jan 19, 2016
Full star icon Full star icon Full star icon Full star icon Full star icon 5
It's a great introduction to Magento 2 development environment especially because Magento 2 is the new version of this ecommerce platform and it's not backwards compatible with the Magento 1 versions. This means that we have a gamechange and many things we have to relearn in order to update our clients' sites to this new version. The first chapter tackles this process in case of the sample data site. Of course still few sites run Magento 2 but it's good idea to stay ahead with practical advices. This cookbook will save you time!
Amazon Verified review Amazon
hsuastegui Feb 04, 2016
Full star icon Full star icon Full star icon Full star icon Empty star icon 4
General overview but very useful if you are migrating from Magento 1 and need to quickly have an overview of changes. The Magento 2 Developer's Guide Magento 2 Developer's Guide has more in depth coverage for developers
Amazon Verified review Amazon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

How do I buy and download an eBook? Chevron down icon Chevron up icon

Where there is an eBook version of a title available, you can buy it from the book details for that title. Add either the standalone eBook or the eBook and print book bundle to your shopping cart. Your eBook will show in your cart as a product on its own. After completing checkout and payment in the normal way, you will receive your receipt on the screen containing a link to a personalised PDF download file. This link will remain active for 30 days. You can download backup copies of the file by logging in to your account at any time.

If you already have Adobe reader installed, then clicking on the link will download and open the PDF file directly. If you don't, then save the PDF file on your machine and download the Reader to view it.

Please Note: Packt eBooks are non-returnable and non-refundable.

Packt eBook and Licensing When you buy an eBook from Packt Publishing, completing your purchase means you accept the terms of our licence agreement. Please read the full text of the agreement. In it we have tried to balance the need for the ebook to be usable for you the reader with our needs to protect the rights of us as Publishers and of our authors. In summary, the agreement says:

  • You may make copies of your eBook for your own use onto any machine
  • You may not pass copies of the eBook on to anyone else
How can I make a purchase on your website? Chevron down icon Chevron up icon

If you want to purchase a video course, eBook or Bundle (Print+eBook) please follow below steps:

  1. Register on our website using your email address and the password.
  2. Search for the title by name or ISBN using the search option.
  3. Select the title you want to purchase.
  4. Choose the format you wish to purchase the title in; if you order the Print Book, you get a free eBook copy of the same title. 
  5. Proceed with the checkout process (payment to be made using Credit Card, Debit Cart, or PayPal)
Where can I access support around an eBook? Chevron down icon Chevron up icon
  • If you experience a problem with using or installing Adobe Reader, the contact Adobe directly.
  • To view the errata for the book, see www.packtpub.com/support and view the pages for the title you have.
  • To view your account details or to download a new copy of the book go to www.packtpub.com/account
  • To contact us directly if a problem is not resolved, use www.packtpub.com/contact-us
What eBook formats do Packt support? Chevron down icon Chevron up icon

Our eBooks are currently available in a variety of formats such as PDF and ePubs. In the future, this may well change with trends and development in technology, but please note that our PDFs are not Adobe eBook Reader format, which has greater restrictions on security.

You will need to use Adobe Reader v9 or later in order to read Packt's PDF eBooks.

What are the benefits of eBooks? Chevron down icon Chevron up icon
  • You can get the information you need immediately
  • You can easily take them with you on a laptop
  • You can download them an unlimited number of times
  • You can print them out
  • They are copy-paste enabled
  • They are searchable
  • There is no password protection
  • They are lower price than print
  • They save resources and space
What is an eBook? Chevron down icon Chevron up icon

Packt eBooks are a complete electronic version of the print edition, available in PDF and ePub formats. Every piece of content down to the page numbering is the same. Because we save the costs of printing and shipping the book to you, we are able to offer eBooks at a lower cost than print editions.

When you have purchased an eBook, simply login to your account and click on the link in Your Download Area. We recommend you saving the file to your hard drive before opening it.

For optimal viewing of our eBooks, we recommend you download and install the free Adobe Reader version 9.