Book Image

Magento 2 Development Cookbook

Book Image

Magento 2 Development Cookbook

Overview of this book

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.
Table of Contents (18 chapters)
Magento 2 Development Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

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, and...