CMS Snap Display Connector for Catalog 2024.1
With the release of 2024.1, CMS Snap Display Connector for Catalog allows you to hide data for courses and programs. Connectors implemented after this release will contain these features.
If your connector was implemented before this release, these instructions will guide you through the updates. Contact our CMS Support Team for assistance with these changes.
New NamesLink to this section
Rename your Components or Tiles to align with new product names, as follows:
Previous Name | New Name |
---|---|
Acalog Course | Modern Campus Catalog Course |
Acalog Course List | Modern Campus Catalog Course List |
Acalog Program | Modern Campus Catalog Program |
Acalog Program List | Modern Campus Catalog Program List |
ComponentsLink to this section
Update your connector components for Courses and Programs to see new options for the pages that use the components.
Hide Course Title and Description
- Go to Content > Components.
- Click to edit your Course component.
- Navigate to Form Elements.
- Add a radio button element.
- Label: Hide Title
- Helper Text: Determine if you want to hide the course title.
- Required: No
- Items: Yes, No (default)
- Go to the Advanced tab.
- For Yes, set the Value to true
- For No, set the Value to false
- Click Save.
- Add another radio button element.
- Label: Hide Description
- Helper Text: Determine if you want to hide the course description.
- Required: No
- Items: Yes, No (default)
- Go to the Advanced tab.
- For Yes, set the Value to true
- For No, set the Value to false
- Click Save.
Next, edit the source code to display the form content.
- Inside the opening
<course>
tag, after the name attribute, add the following attributes:hide-title=""
hide-description=""
- Drag the Hide Title Form Element from the source toolbar to the source editor, into the attribute
hide-title=""
. - Drag the Hide Description Form Element from the source toolbar to the source editor, into the attribute
hide-description=""
.
- The source of the component should match the following:
- The source of the component should match the following:
- Save and Launch the component.
Hide Program Title, Description, and Cores
- Go to Content > Components.
- Click to edit your Program component.
- Navigate to Form Elements.
- Add a radio button element.
- Label: Hide Title
- Helper Text: Determine if you want to hide the program title.
- Required: No
- Items: Yes, No (default)
- Go to the Advanced tab.
- For Yes, set the Value to true
- For No, set the Value to false
- Click Save.
- Add another radio button element.
- Label: Hide Description
- Helper Text: Determine if you want to hide the program description.
- Required: No
- Items: Yes, No (default)
- Go to the Advanced tab.
- For Yes, set the Value to true
- For No, set the Value to false
- Click Save.
- Add another radio button element.
- Label: Hide Cores
- Helper Text: Select to hide program cores.
- Required: No
- Items: Yes, No (default)
- Go to the Advanced tab.
- For Yes, set the Value to true
- For No, set the Value to false
- Click Save.
Next, edit the source code to display the form content.
- Inside the opening
<course>
tag, after the name attribute, add the following attributes:hide-title=""
hide-description=""
hide-cores=""
- Drag the Hide Title Form Element from the source toolbar to the source editor, into the attribute
hide-title=""
. - Drag the Hide Description Form Element from the source toolbar to the source editor, into the attribute
hide-description=""
. - Drag the Hide Course Form Element from the source toolbar to the source editor, into the attribute
hide-cores=""
.- The source of the component should match the following:
- The source of the component should match the following:
- Save and Launch the component.
Layout Builder TilesLink to this section
Update your connector Tiles for Courses and Programs as follows to see new options for the pages (Layout Control Files [LCFs]) that use these tiles:
Hide Course Title and Description
- Go to Content > Layout Builder > Tiles.
- Click to edit your Course tile.
- Inside the opening
<course>
tag, after the name attribute, add the following attributes:hide-title=""
hide-description=""
- Place your cursor inside of the
hide-title
attribute. - In the HTML toolbar, click Insert Element.
- In the Edit Element box, enter information in the form fields, as follows:
- Label: Hide Title
- Helper Text: Determine if you want to hide the course title.
- Items:
- Display Name: Yes Value: true
- Display Name: No (default) Value: false
- Click Save to exit the editor.
- Place your cursor inside of the
hide-description
attribute. - In the HTML toolbar, click Insert Element.
- In the Edit Element box, enter information in the form fields, as follows:
- Label: Hide Description
- Helper Text: Determine if you want to hide the course description.
- Items:
- Display Name: Yes Value: true
- Display Name: No (default) Value: false
- Click Save to exit the editor.
- The source code of the tile should match the following:
- The source code of the tile should match the following:
- Save and Launch the tile.
- Go to Layouts.
- Launch the layouts that use that tile.
Hide Program Title, Description, and Cores
- Go to Content > Layout Builder > Tiles.
- Click to edit your Program tile.
- Inside the opening
<program>
tag, after the name attribute, add the following attributes:hide-title=""
hide-description=""
hide-cores=""
- Place your cursor inside of the
hide-title
attribute. - In the HTML toolbar, click Insert Element.
- In the Edit Element box, enter information in the form fields, as follows:
- Label: Hide Title
- Helper Text: Determine if you want to hide the program title.
- Items:
- Display Name: Yes Value: true
- Display Name: No (default) Value: false
- Click Save to exit the editor.
- Place your cursor inside of the
hide-description
attribute. - In the HTML toolbar, click Insert Element.
- In the Edit Element box, enter information in the form fields, as follows:
- Label: Hide Description
- Helper Text: Determine if you want to hide the program description.
- Items:
- Display Name: Yes Value: true
- Display Name: No (default) Value: false
- Click Save to exit the editor.
- Place your cursor inside of the
hide-cores
attribute. - In the HTML toolbar, click Insert Element.
- In the Edit Element box, enter information in the form fields, as follows:
- Label: Hide Description
- Helper Text: Determine if you want to hide the program cores.
- Items:
- Display Name: Yes Value: true
- Display Name: No (default) Value: false
- Click Save to exit the editor.
- The source code of the tile should match the following:
- The source code of the tile should match the following:
- Save and Launch the tile.
- Go to Layouts.
- Launch the layouts that use that tile.