- Description:
This key represents the URL add option object in a
collections_config.*.add_optionsarray.The value is an object that defines an option available in the + Add button dropdown at the top right of the Collection browser. URL add options must contain a required
hrefkey and can contain optionalnameandiconkeys.- Appears in:
└── collections_config └── * └── add_options └── [*] └── HREF Add Option- Type:
Object- Properties:
This key defines the link for a URL option in the + Add button dropdown.
The value is a string that specifies a URL. Values can be an external URL or an internal URL relative to the current Site.
This key is required for URL add options in the
collections_config.*.add_optionsarray.Show examplesHide examples
In this example, the + Add button dropdown in the
teamCollection browser uses a link option with the URLhttps://forms.gle/xxxxxxx.Copied to clipboardcollections_config: team: add_options: - name: Submit Form icon: assignment_add href: https://forms.gle/xxxxxxx{ "collections_config": { "team": { "add_options": [ { "name": "Submit Form", "icon": "assignment_add", "href": "https://forms.gle/xxxxxxx" } ] } } }This key defines the icon displayed next to the text for a URL option in the + Add button dropdown.
The value is a string that specifies an icon name from Google's Material Symbols.
Defaults to:
addAllowed values:
12336010k10mp11mp12mp13mp14mp15mp16mpand 3574 more.Show examplesHide examples
In this example, the + Add button dropdown in the
teamCollection browser uses a link option with the iconmapto navigate to the Office Locations page on our live website.Copied to clipboardcollections_config: team: add_options: - name: Office Locations icon: map href: /our-offices{ "collections_config": { "team": { "add_options": [ { "name": "Office Locations", "icon": "map", "href": "/our-offices" } ] } } }This key defines the text displayed for a URL option in the + Add button dropdown.
Show examplesHide examples
In this example, the + Add button dropdown in the
teamCollection browser uses a link option with the text "Office Locations" to navigate to the Office Locations page on our live website.Copied to clipboardcollections_config: team: add_options: - name: Office Locations icon: map href: /our-offices{ "collections_config": { "team": { "add_options": [ { "name": "Office Locations", "icon": "map", "href": "/our-offices" } ] } } }- Examples:
In this example, the + Add button dropdown in the
teamCollection browser has a link to the Office Locations page on our live website.Copied to clipboardcollections_config: team: add_options: - name: Office Locations icon: map href: /our-offices{ "collections_config": { "team": { "add_options": [ { "name": "Office Locations", "icon": "map", "href": "/our-offices" } ] } } }