This plugin requires Craft CMS 3.0.0-beta.23 or later.
To install the plugin, follow these instructions.
-
Open your terminal and go to your Craft project:
cd /path/to/project
-
Then tell Composer to load the plugin:
composer require wmd/section-and-product-type
-
In the Control Panel, go to Settings → Plugins and click the “Install” button for Section And Product Type.
The plugin is a field for selecting sections and types of commerce products.
When you create fields with one of these types, you can choose which sections or product types will be available for selection. It is possible to enable multi-selection, which makes it possible to select several elements.
Steps:
- Installing the plugin;
- Creation and configuration of fields;
- Add a field to the Entry Type of Section;
Usage in the template
{# section field #}
{% set sectionsIds = enty.mySectionField %}
{% set sections = craft.entries.sectionId(sections).all() %}
{% for section in sections %}
{# code for output #}
{% endfor %}
{# product type field #}
{% set productTypeIds = enty.myProductTypeField %}
{% set products = craft.products().typeId(productTypeIds).all() %}
{% for product in products %}
{# code for output #}
{% endfor %}
The plugin is based on the logic of the plugin https://github.com/charliedevelopment/craft3-section-field, many thanks to the author.
Brought to you by WMD Hosting