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

Creating a custom configuration parameter


At this point, we have a working widget. It shows up in the frontend and the right products are displayed for the given category ID.

To configure the category ID, we have to know the ID of the category. We have to copy it from the category page and paste it in the textbox.

For better usability, we will create a custom configuration field to select a category. We will create a button that opens an overlay where we can choose the right category ID.

Getting ready

We will create a similar configuration field that is used for the Catalog Category Link widget type in the backend. You can look at this configuration widget's configuration to see how it works.

Also, ensure that you have the right start files installed because we will build further on the module that we created in the previous recipes.

How to do it...

Using the following steps, we will create a category chooser that will be used on the widget configuration page.

  1. When we look at the Catalog Category...