Page Directive Reference

Directives are meta-data that appears in comments within the template code (typically at the top of the template).   When present, they generate fields that merchants may fill in, allowing them to customize their web site without having to edit code.

directive declares an attribute

merchant supplies a value
value is available within the template

 

 

Directives break down into several categories.

The two pound signs (#) in front of each directive example are velocity (our template language) comments. Because the following directives are used by the UltraCart engine and not the velocity template engine, we do not want them read by the velocity engine and rendered as html content. So it's standard practice to list out directives within velocity comments.

The syntax for directives is uc:directive-name="name|default-value". The pipe (delimiter) and default value are almost always optional.

 

Template Capabilities

NameValue 1Value 2DescriptionExample
uc:contains-velocityBoolean Indicates that the template contains Velocity code and should be processed through the Velocity rendering engine## uc:contains-velocity="true"
uc:display-itemsBoolean Indicates that the template can display items## uc:display-items="true"
uc:display-blog-postsBoolean When true, additional features are displayed on page editor allowing the merchant to select blog posts, etc.## uc:display-blog-posts="true"
uc:display-subgroupsBoolean Indicates that the template supports displaying child pages.## uc:display-subgroups="true"
uc:ignore-missing-directivesBoolean 

Useful for instructing the backend editor to not generate input fields for the missing directives used in the template.

For example, some of the document tops access lots of different information that is conditional. We don't want input fields generated for conditional data.

## uc-ignore-missing-directives="true"
uc:page-multimedia-default-used
Boolean true if the default multimedia image is used somewhere on the page 
uc:paginationBoolean Indicates that the template supports paginated display of a large number of items## uc:pagination="true"
uc:page-typeString The type of page. Possible options are:
  • static
  • group
  • item
  • misc
  • customer
  • checkout
  • affiliate
  • email
## uc:page-type="group"

Attributes (Page, Theme, and Site)

Page, theme, and site attributes all function the same. The only difference is the scope.

  • Page attributes are only meant for use on one page.
  • Theme attributes within a particular theme.
  • Site attributes are expected to be used across the entire site.

 

 

Name

Value 1Value 2DescriptionExample
uc:page-attribute-booleanName of the attributeDefault ValueA yes/no attribute that appears as a checkbox in the user interface.## uc:page-attribute-boolean="show-comments|true"
uc:page-attribute-colorName of the attributeDefault ValueAn HTML color that displays as a color picker in the user interface 
uc:page-attribute-definitionlistName of the attribute A definition list allows terms/definitions or name/value pair lists to be configured 

uc:page-attribute-deprecated
Name of the attribute Marks an attribute as deprecated to allow the merchant warning that it will disappear in future releases 
uc:page-attribute-htmlName of the attributeDefault ValueA block of HTML. The editor in the user interface is a syntax highlighting editor. 
uc:page-attribute-integerName of the attributeDefault ValueA number input 
uc:page-attribute-itemsetName of the attributeDefault ValueA set of item ids. The input contains a an item search field to make located the items easier. 
uc:page-attribute-multilineName of the attribute A multi-line text input field. 
uc:page-attribute-pagecollectionName of the attribute Provides a rich UI widget allowing merchants to select a group of pages for whatever end is desired 
uc:page-attribute-rgbaName of the attributeDefault Valuergba color picker 
uc:page-attribute-simplelistName of the attribute A simple list allows for a series of information to be configured within an attribute. 
uc:page-attribute-sliderName of the attribute Provides a rich UI widget to allow merchants to configure a slider 
uc:page-attribute-stringName of the attributeDefault ValueA single line text input field 
uc:child-page-multimedia-code
Name of the code Instructs the editor that this page uses child images by a certain code. Imagine a catalog page that needs to list out many child pages. If the page wishes to show a particular image for each child page, it can specify the code here. When the merchant edits the child page, a placeholder will be created alerting the merchant that they need to supply that image.  
uc:child-page-multimedia-code-deprecated
Name of the code Instructs the editor to display a deprecated warning next to a particular multimedia image, alerting the merchant that the child page's image is no longer in use.  
uc:child-page-multimedia-default-used
'true' Instructs the editor that this page uses the default image of each child page, most likely to display a thumbnail of the children. 
uc:page-description-used
'true'  Instructs the editor that the page description is used. 
uc:page-multimedia-code
Name of the code Instructs the editor that this page template uses a multimedia image given by a particular code. The editor will display a placeholder for that image to remind the merchant they need to provide an image for proper operation. 
uc:page-multimedia-code-deprecated
Name of the code Instructs the editor to display a deprecated warning next to a particular multimedia image, alerting the merchant that the image is no longer in use.  
uc:page-multimedia-default-used
'true' Instructs the editor that this page uses the default image, prompting the merchant to supply a default image. 
uc:pagecollection-multimedia-code
Name of the code Instructs the editor that each page in a pagecollection uses images by a certain code. Imagine a catalog page that needs to list out a collection of pages. When the merchant edits any page in the pagecollection, a placeholder will be created alerting the merchant that they need to supply that image.  
 
uc:pagecollection-multimedia-code-deprecated
Name of the code  Instructs the editor to display a deprecated warning next to a particular multimedia image, alerting the merchant that the image is no longer in use.  
 
uc:pagecollection-multimedia-default-used
Name of the code  Instructs the merchant that any page found in the pagecollection needs to supply a default image.  
 
 
 

Name

Value 1Value 2DescriptionExample
uc:theme-attribute-booleanName of the attributeDefault ValueA yes/no attribute that appears as a checkbox in the user interface.## uc:theme-attribute-boolean="show-comments|true"
uc:theme-attribute-colorName of the attributeDefault ValueAn HTML color that displays as a color picker in the user interface 
uc:theme-attribute-definitionlistName of the attribute A definition list allows terms/definitions or name/value pair lists to be configured 

uc:theme-attribute-deprecated
Name of the attribute Marks an attribute as deprecated to allow the merchant warning that it will disappear in future releases 
uc:theme-attribute-htmlName of the attributeDefault ValueA block of HTML. The editor in the user interface is a syntax highlighting editor. 
uc:theme-attribute-integerName of the attributeDefault ValueA number input 
uc:theme-attribute-itemsetName of the attributeDefault ValueA set of item ids. The input contains a an item search field to make located the items easier. 
uc:theme-attribute-multilineName of the attribute A multi-line text input field. 
uc:theme-attribute-pagecollectionName of the attribute Provides a rich UI widget allowing merchants to select a group of pages for whatever end is desired 
uc:theme-attribute-rgbaName of the attributeDefault Valuergba color picker 
uc:theme-attribute-simplelistName of the attribute A simple list allows for a series of information to be configured within an attribute. 
uc:theme-attribute-stringName of the attributeDefault ValueA single line text input field 
 
 

 

 

Name

Value 1Value 2DescriptionExample
uc:site-attribute-booleanName of the attributeDefault ValueA yes/no attribute that appears as a checkbox in the user interface.## uc:site-attribute-boolean="show-comments|true"
uc:site-attribute-colorName of the attributeDefault ValueAn HTML color that displays as a color picker in the user interface 
uc:site-attribute-definitionlistName of the attribute A definition list allows terms/definitions or name/value pair lists to be configured 

uc:site-attribute-deprecated
Name of the attribute Marks an attribute as deprecated to allow the merchant warning that it will disappear in future releases 
uc:site-attribute-htmlName of the attributeDefault ValueA block of HTML. The editor in the user interface is a syntax highlighting editor. 
uc:site-attribute-integerName of the attributeDefault ValueA number input 
uc:site-attribute-itemsetName of the attributeDefault ValueA set of item ids. The input contains a an item search field to make located the items easier. 
uc:site-attribute-multilineName of the attribute A multi-line text input field. 
uc:site-attribute-pagecollectionName of the attribute Provides a rich UI widget allowing merchants to select a group of pages for whatever end is desired 
uc:site-attribute-rgbaName of the attributeDefault Valuergba color picker 
uc:site-attribute-simplelistName of the attribute A simple list allows for a series of information to be configured within an attribute. 
uc:theme-attribute-stringName of the attributeDefault ValueA single line text input field 

 

 

Item attributes will be configured at the item level using the item editor pages.

Name

Value 1Value 2DescriptionExample
uc:item-attribute-booleanName of the attributeDefault ValueA yes/no attribute that appears as a checkbox in the user interface.## uc:item-attribute-boolean="show-comments|true"
uc:item-attribute-colorName of the attributeDefault ValueAn HTML color that displays as a color picker in the user interface 
uc:item-attribute-definitionlistName of the attribute A definition list allows terms/definitions or name/value pair lists to be configured 

uc:item-attribute-deprecated
Name of the attribute Marks an attribute as deprecated to allow the merchant warning that it will disappear in future releases 
uc:item-attribute-htmlName of the attributeDefault ValueA block of HTML. The editor in the user interface is a syntax highlighting editor. 
uc:item-attribute-integerName of the attributeDefault ValueA number input 
uc:item-attribute-itemsetName of the attributeDefault ValueA set of item ids. The input contains a an item search field to make located the items easier. 
uc:item-attribute-multilineName of the attribute A multi-line text input field. 
uc:item-attribute-pagecollectionName of the attribute Provides a rich UI widget allowing merchants to select a group of pages for whatever end is desired 
uc:item-attribute-rgbaName of the attributeDefault Valuergba color picker 
uc:item-attribute-simplelistName of the attribute A simple list allows for a series of information to be configured within an attribute. 
uc:item-attribute-stringName of the attributeDefault ValueA single line text input field 
uc:item-multimedia-code
Name of the code Instructs the editor that this page template uses an item multimedia image given by a particular code. The editor will display a placeholder for that image to remind the merchant they need to provide an image for proper operation. 
uc:item-multimedia-code-deprecated
Name of the code Instructs the editor to display a deprecated warning next to a particular item multimedia image, alerting the merchant that the image is no longer in use.  
uc:item-multimedia-default-used
'true' Instructs the editor that this page uses the default image, prompting the merchant to supply a default image. 
 
Blog attributes will be configured at the blog post using the blog post editor.

Name

Value 1Value 2DescriptionExample
uc:blog-attribute-booleanName of the attributeDefault ValueA yes/no attribute that appears as a checkbox in the user interface.## uc:blog-attribute-boolean="show-comments|true"
uc:blog-attribute-colorName of the attributeDefault ValueAn HTML color that displays as a color picker in the user interface 
uc:blog-attribute-definitionlistName of the attribute A definition list allows terms/definitions or name/value pair lists to be configured 

uc:blog-attribute-deprecated
Name of the attribute Marks an attribute as deprecated to allow the merchant warning that it will disappear in future releases 
uc:blog-attribute-htmlName of the attributeDefault ValueA block of HTML. The editor in the user interface is a syntax highlighting editor. 
uc:blog-attribute-integerName of the attributeDefault ValueA number input 
uc:blog-attribute-itemsetName of the attributeDefault ValueA set of item ids. The input contains a an item search field to make located the items easier. 
uc:blog-attribute-multilineName of the attribute A multi-line text input field. 
uc:blog-attribute-pagecollectionName of the attribute Provides a rich UI widget allowing merchants to select a group of pages for whatever end is desired 
uc:blog-attribute-rgbaName of the attributeDefault Valuergba color picker 
uc:blog-attribute-simplelistName of the attribute A simple list allows for a series of information to be configured within an attribute. 
uc:blog-attribute-stringName of the attributeDefault ValueA single line text input field