dolphiq / titleentriesfield
Offers users a field type with an easy way to set a different title for the relation than the related page title. Useful in menus, submenus or related lists if you are linking to other content but want to use shorter or different titles in the lists.
Installs: 7 071
Dependents: 0
Suggesters: 0
Security: 0
Stars: 9
Watchers: 5
Forks: 1
Open Issues: 4
Type:craft-plugin
Requires
- craftcms/cms: ^3.0.0-RC2
This package is not auto-updated.
Last update: 2024-08-26 16:36:07 UTC
README
Currently the project is DISCONTINUED. However, feel free to fork it and continue its development!
Craft plugin that provides a new field type that works like an Entries field type but offers users an easy way to set a different title for the relation than the related page title.
This is particularly useful if you are linking to other content but want to use shorter or different titles in the lists e.g. in menus, submenus or related lists.
Installation
To install the Title Entries Field type, follow these steps:
- Install with Composer via
composer require dolphiq/titleentriesfield
from your project folder - Install plugin in the Craft Control Panel under Settings > Plugins
- The
Title Entries Field
type will be available when adding a new field - Settings > Fields > Add new field
Title Entries Field plugin works on Craft 3.x.
Example of the Title Entries Field in action
Using the Title Entries Field
You can use the field as a normal Entries field type but give the end user the possibility to change te label for each relation/link.
Usage sample in Twig templates
{% for entry in entry.myLinks %}
{{ entry.title }} - {{ entry.linkTitle }} <br>
{% endfor %}
Usage sample to display the Title Entries Field if the field is set or use the title field as backup (entry.Title)
<ul>
{% for entry in entry.menuLinks %}
<li><a href="{{ entry.url }}" rel="{{ entry.title }}">
{{ entry.Title }}
</a>
{% endfor %}
</ul>
Contributors & Developers
Johan Zandstra - info@dolphiq.nl Brought to you by Dolphiq