Disabling links and avatars or icons in templates
SINCE V7.1.1.6
Templates are aware of two velocity variables that work with Email This Issue's macros:
disableAvatars: #renderIssueType(), #renderPriority(), #renderResolution()
disableLinks: #renderSummary(), #renderProject(), #renderUser(), #footer(), #renderLinkToCustomerPortal(), #renderLinkToIssueCustomerPortal(),
Important: These variables do not work with the built-in Jira macros.
Disabling links
Add this to the beginning of the template to disable links:
#set($disableLinks="true")
Disabling avatars or icons
Adding this will prevent rendering user avatars and issue icons (type, priority, resolution):
#set($disableAvatars="true")
Last updated
Was this helpful?