This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{# | |
# FIELD_NAME is name of field | |
# sampleCategories, sampleCategory, category, entry, entries can be anything | |
#} | |
{% set sampleCategories = craft.tags.set('FIELD_NAME') %} | |
<ul> | |
{% for sampleCategory in sampleCategories %} | |
{% set category = craft.tags.search('name:'~sampleCategory.name).first() %} | |
{% if category %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% if FIELDNAME.id == entry.id or FIELDNAME.isDescendantOf(entry) %} class="active"{% endif %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{# | |
# FIELD.NAME is name of field. | |
#} | |
{{ FIELD.NAME|length > 155 ? FIELD.NAME|slice(0, 155)|striptags ~ ' ...' : FIELD.NAME }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{# | |
# SECTION_NAME is the name of the section for events | |
# allEvents, futureEvents, event can be anything | |
# Not sure where I got this sample from | |
#} | |
{% set allEvents = craft.entries.section('SECTION_NAME').limit(3).find() %} | |
{% set futureEvents = [] %} | |
{% for event in allEvents %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* area plugin for Craft CMS | |
* | |
* @author DW | |
* @copyright Copyright (c) 2017 DW | |
* @link www.url.com | |
* @package Area | |
* @since 1.0.0 | |
*/ |