Skip to content

Commit 0fbac7a

Browse files
committed
Update cross-references to template generators
1 parent efe625b commit 0fbac7a

File tree

7 files changed

+26
-29
lines changed

7 files changed

+26
-29
lines changed

docs/add-ons/pro-search/tags.md

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,19 @@
1010

1111
[TOC]
1212

13-
**These terms are used throughout the documentation:**
13+
**These terms are used throughout the documentation:**
1414
```
15-
required: This parameter/field is required for this tag to function.
16-
form only: This can only be set as a field in the form and not as a parameter in the tag.
17-
param only: This parameter can only be set in the tag and not as a field in the form.
18-
fixed value: This field cannot be edited and is set with a fixed value.
19-
recurring only: This parameter/field only applies to recurring charges.
20-
one-time only: This parameter/field only applies to one-time charges.
21-
added in X.X.X: This parameter/field is only available from this version forward.
22-
logged in: This tag is only available if the user is logged in.
15+
required: This parameter/field is required for this tag to function.
16+
form only: This can only be set as a field in the form and not as a parameter in the tag.
17+
param only: This parameter can only be set in the tag and not as a field in the form.
18+
fixed value: This field cannot be edited and is set with a fixed value.
19+
recurring only: This parameter/field only applies to recurring charges.
20+
one-time only: This parameter/field only applies to one-time charges.
21+
added in X.X.X: This parameter/field is only available from this version forward.
22+
logged in: This tag is only available if the user is logged in.
2323
```
2424

25-
NOTE: **Note:** See the [template generator](control-panel/template-manager.md#template-generators) for the keyword search in ExpressionEngine 7.5+. Pro Search must be installed and a Collection created.
25+
NOTE: **Note:** See the [template generator](templates/generators.md) for the keyword search in ExpressionEngine 7.5+. Pro Search must be installed and a Collection created.
2626

2727
## {exp:pro_search:form}
2828

@@ -157,7 +157,7 @@ Short syntax for the URL tag. When used, it will automatically inherit the query
157157
## {exp:pro_search:filters}
158158

159159
The Filters tag works identically to the Form tag, without generating a search form. Use it to show specific search filters anywhere on your page, or to create a list of URL tags in short syntax. The following example shows a list of one-click filters based on the current search that could be used to modify the results display with javascript:
160-
160+
161161
{exp:pro_search:filters query="{segment_3}"}
162162
{exp:channel:categories channel="entries" style="linear"}
163163
{if count == 1}<ul>{/if}
@@ -317,7 +317,7 @@ Alternative syntax for the native {if no_results}{/if} conditional.
317317
#### `group_id=`
318318

319319
Limit shortcuts by given group ID
320-
320+
321321
{exp:pro_search:shortcuts group_id="1"}
322322
{if count == 1}<ul>{/if}
323323
<li><a href="{path="search/{shortcut_name}"}">{shortcut_label}</a></li>
@@ -403,7 +403,7 @@ Group ID the shortcut needs to be saved to. **Required**.
403403
<button type="submit">Save</button>
404404
</fieldset>
405405
{/exp:pro_search:save}
406-
406+
407407
#### `form_attribute=`
408408

409409
Specifies any html attribute you want the form to have. For example: `form_id="search"` will add `id="search"` to the form tag, while `form_class="searchform"` will add `class="searchform"` to the tag.
@@ -438,7 +438,7 @@ The encoded search query to inherit. Not needed when [not encoding queries](http
438438

439439
#### `reset=`
440440

441-
Set to "yes" to stop this tag from inheriting the current query.
441+
Set to "yes" to stop this tag from inheriting the current query.
442442

443443
{exp:pro_search:url reset="yes"}
444444

@@ -465,7 +465,7 @@ Use this single tag to output a single given parameter value outside of the Form
465465
{exp:pro_search:param get="item_size"}
466466

467467
You can also use it as a paired loop to output multi-valued parameters.
468-
468+
469469
{exp:pro_search:param:loop get="category" as="cat_id" query="{segment_3}"}
470470
{cat_id}
471471
{/exp:pro_search:param:loop}
@@ -501,7 +501,7 @@ Use this tag to display a list of popular keywords. The Search Log must be enabl
501501
#### `limit=`
502502

503503
Maximum number of keywords to display. Defaults to 10.
504-
504+
505505
{exp:pro_search:popular limit="10"}
506506
{if count == 1}<ul>{/if}
507507
<li>{keywords}: {search_count}</li>
@@ -625,7 +625,7 @@ Maximum number of suggestions to return. Defaults to 5.
625625
The method used for getting the suggestions, either `levenshtein` or `soundex`. Defaults to Levenshtein.
626626

627627
{exp:pro_search:suggestions method="soundex"}
628-
628+
629629
NOTE: **Note:** Using Soundex for generating suggestions is only effective for languages with a latin-based alphabet. The Levenshtein method works regardless of alphabet type.
630630

631631
#### `query=`

docs/add-ons/structure/overview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ Structure is a powerful add-on that lets you create pages, generate navigation,
1313

1414
It forgoes the default template_group/template setup and creates “static” and “listing” pages that are all editable through a tree sitemap view. With Structure enabled, traditional page style content and multiple entry pages can live within the same area.
1515

16-
NOTE:**Note:** Documentation for Structure is still being migrated. Until this is complete, please reference the [Structure documentation on EEHarbor's website](https://eeharbor.com/structure/documentation).
16+
Structure provides a [Template Generator](templates/generators.md) that demonstrates how to integrate Structure template tags with your site.
1717

18-
NOTE:**Note:** See the [template generator](control-panel/template-manager.md#template-generators) for the structure templates in ExpressionEngine 7.5+.
18+
NOTE:**Note:** Documentation for Structure is still being migrated. Until this is complete, please reference the [Structure documentation on EEHarbor's website](https://eeharbor.com/structure/documentation).

docs/channels/channel-form/overview.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,10 @@ The Channel Form makes it possible to add and edit channel entries from outside
2424
- Server-side validation.
2525
- Handles AJAX requests and can output responses in JSON.
2626

27-
NOTE: See the [template generator](control-panel/template-manager.md#template-generators) for the channel form in ExpressionEngine 7.5+.
28-
2927
## Basic Usage
3028

31-
TIP: Please visit the [Examples](channels/channel-form/examples.md) page to see a variety of implementations.
29+
TIP: You can view the [Examples](channels/channel-form/examples.md) page to see a variety of implementations.
30+
The Channel Form [Template Generator](templates/generators.md) can also help create a functional template that demonstrates the parameters and variables documented below.
3231

3332
The first thing you will need is a `{exp:channel:form}` tag pair, along with a few [parameters](#parameters) to determine where to submit the entry:
3433

docs/channels/entries.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ The directives that tell the tag how to behave are **parameters**:
3333

3434
Within the opening and closing ExpressionEngine Tags are **variables**. `{title}` is replaced with the Title of each entry, and `{body}` is replaced with the content from the "Body" field of each entry.
3535

36-
NOTE: **Note:** See the [template generator](control-panel/template-manager.md#template-generators) for the channel entries in ExpressionEngine 7.5+.
36+
The Channel Entries module provides a [Template Generator](templates/generators.md) that creates functional templates while demonstrating the parameters and variables documented below.
3737

3838
## Parameters
3939

docs/control-panel/template-manager.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -241,12 +241,12 @@ This section of the Control Panel allows you to create or edit a template group.
241241

242242
## Template Generators
243243

244-
**Control Panel Location: `Developer > Templates > Template Generators`**
244+
**Control Panel Location: `Developer > Templates > Template Generator`**
245245

246246
This section of the Control Panel allows you to automatically create the basic tag framework for a variety of modules, including channels, navigation, member tags, etc. using [Template Generators](templates/generators.md).
247247

248248
## Export Templates
249249

250250
**Control Panel Location: `Developer > Templates > Export`**
251251

252-
![Export All Templates icon](/_images/export_templates.png) Clicking the Export All Templates Icon will download all templates, partials, and variables as a compressed *.zip archive.
252+
![Export All Templates icon](/_images/export_templates.png) Clicking the Export All Templates Icon will download all templates, partials, and variables as a compressed *.zip archive.

docs/member/index.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ You'll find many member management options available at:
1414
- The [Members](control-panel/member-manager.md) section, which hosts a comprehensive suite of member management utilities including the [Membership Preferences](control-panel/settings/members.md) page.
1515
- The My Account Page, accessible from the Control Panel's sidebar. It can also display information for any member if you choose a particular member from `Members`.
1616
- Member [global template variables](templates/globals/single-variables.md#member-variables), which allow you to output information on the current user.
17-
- Member tags can be used to build a robust frontend member area, enabling your site members to manage their personal profile information without having access to your Control Panel.
17+
- Member tags can be used to build a robust frontend member area, enabling your site members to manage their personal profile information without having access to your Control Panel. The Member Management [Template Generator](templates/generators.md) can create a set of functional templates that demonstrate how to use these tags along with their available parameters and variables.
1818

1919

2020
NOTE: **Note:** A member account's Username and Screen Name can be identical, but the Username must be unique system-wide.
@@ -34,8 +34,6 @@ NOTE: **Note:** A member account's Username and Screen Name can be identical, bu
3434
- [Ignore List Tag](member/ignore-list.md)
3535
- [Profile Templates (Legacy)](member/profile-templates.md)
3636

37-
NOTE: **Note:** See the [template generator](control-panel/template-manager.md#template-generators) for the member templates in ExpressionEngine 7.5+.
38-
3937

4038
### Member Navigation
4139

docs/templates/generators.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ ExpressionEngine provides a set of template generators that allow you to quickly
1515

1616
## Control Panel Usage
1717

18-
Before you can use the template generators you will need to set up your channels and custom fields. Once this is done you can navigate to Templates > Template Generator.
18+
Before you can use the template generators you will need to set up your channels and custom fields. Once this is done you can navigate to `Developer > Templates > Template Generator`.
1919

2020
![ExpressionEngine Control Panel Template Generator](_images/cp-template-generators.png)
2121

0 commit comments

Comments
 (0)