wmd/section-and-product-type
最新稳定版本:2.0.8
Composer 安装命令:
composer require wmd/section-and-product-type
包简介
If you buidling some Page content builder this can very usefull field type
README 文档
README
Requirements
This plugin requires Craft CMS 3.0.0-beta.23 or later.
Installation
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.
Section And Product Type Overview
The plugin is a field for selecting sections and types of commerce products.
Configuring Section And Product Type
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.
Using Section And Product Type
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
统计信息
- 总下载量: 2.11k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 2
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2020-12-23