<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Service Hub Tickets - Priority Field not working in Tickets &amp; Conversations</title>
    <link>https://community.hubspot.com/t5/Tickets-Conversations/Service-Hub-Tickets-Priority-Field-not-working/m-p/659666#M3579</link>
    <description>&lt;P&gt;Need some help regarding the Ticket-Listing module I tried to add the priority ticket line but when viewing the page it only display 1 priority name e.g Priority 1 instead the other tickets are Priority 2 the loop might be the wrong ?&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Here's the screenshot&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Jun22_0-1656948963691.png" style="width: 400px;"&gt;&lt;img src="https://community.hubspot.com/t5/image/serverpage/image-id/69887i176F342A235DBA73/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Jun22_0-1656948963691.png" alt="Jun22_0-1656948963691.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ScreenShot Tool -20220704233229.png" style="width: 400px;"&gt;&lt;img src="https://community.hubspot.com/t5/image/serverpage/image-id/69888i643DF251D32E6A6E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ScreenShot Tool -20220704233229.png" alt="ScreenShot Tool -20220704233229.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And here's the code of that table at the top&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;{% set user = request_contact.contact %}&lt;BR /&gt;{% set contact_id = user.hs_object_id %}&lt;BR /&gt;{% set company_id = request_contact.company.hs_object_id %}&lt;/P&gt;&lt;P&gt;&amp;lt;!-- Determine the appropriate search criteria based on the logged in Contact's "portal_role" value. --&amp;gt;&lt;BR /&gt;{% set company_or_contact_id = user.portal_role == "Super Admin" ? company_id : contact_id %}&lt;BR /&gt;{% set association_type_id = user.portal_role == "Super Admin" ? 25 : 15 %}&lt;/P&gt;&lt;P&gt;&amp;lt;!-- Retrieve the appropriate Tickets based on the above values. --&amp;gt;&lt;BR /&gt;{% set associated_tickets = crm_associations(company_or_contact_id, 'HUBSPOT_DEFINED', association_type_id,'limit=100&amp;amp;order=-createdate','subject, content, ticket_priority, hs_pipeline_stage, createdate, hs_lastmodifieddate, closed_date, hs_ticket_id, source_type', false) %}&lt;/P&gt;&lt;P&gt;&amp;lt;!-- Store the results in a variable. --&amp;gt;&lt;BR /&gt;{% set ticket_array = associated_tickets.results %}&lt;/P&gt;&lt;P&gt;&amp;lt;form class="cp-ticket-toolbar"&amp;gt;&lt;BR /&gt;&amp;lt;div class="cp-ticket-search" role="search"&amp;gt;&lt;BR /&gt;&amp;lt;label class="show-for-sr" for="cpSearch"&amp;gt;{{ i18n_getmessage('search.description') }}&amp;lt;/label&amp;gt;&lt;BR /&gt;&amp;lt;input id="cpSearch" type="search" name="subject" placeholder="{{ i18n_getmessage('search.placeholder') }}"&amp;gt;&lt;BR /&gt;&amp;lt;/div&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;div class="cp-ticket-filter"&amp;gt;&lt;BR /&gt;&amp;lt;label class="cp-ticket-filter__label" id="cpFilterLabel" aria-label="{{ i18n_getmessage('filter.description') }}"&amp;gt;{{ i18n_getmessage('filter.label') }}&amp;lt;/label&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;div class="cp-ticket-filter__wrapper"&amp;gt;&lt;BR /&gt;&amp;lt;select class="cp-ticket-filter__select-native" id="cpFilterNative" name="status" aria-labelledby="cpFilterLabel"&amp;gt;&lt;BR /&gt;&amp;lt;option value="all"&amp;gt;{{ i18n_getmessage('filter.all') }}&amp;lt;/option&amp;gt;&lt;BR /&gt;&amp;lt;option value="open"&amp;gt;{{ i18n_getmessage('filter.open') }}&amp;lt;/option&amp;gt;&lt;BR /&gt;&amp;lt;option value="closed"&amp;gt;{{ i18n_getmessage('filter.closed') }}&amp;lt;/option&amp;gt;&lt;BR /&gt;&amp;lt;/select&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;div class="cp-ticket-filter__select-custom" id="cpFilterCustom" aria-hidden="true"&amp;gt;&lt;BR /&gt;&amp;lt;div class="cp-ticket-filter__trigger"&amp;gt;{{ i18n_getmessage('filter.all') }}&amp;lt;/div&amp;gt;&lt;BR /&gt;&amp;lt;div class="cp-ticket-filter__options"&amp;gt;&lt;BR /&gt;&amp;lt;div class="cp-ticket-filter__option" data-value="all"&amp;gt;{{ i18n_getmessage('filter.all') }}&amp;lt;/div&amp;gt;&lt;BR /&gt;&amp;lt;div class="cp-ticket-filter__option" data-value="open"&amp;gt;{{ i18n_getmessage('filter.open') }}&amp;lt;/div&amp;gt;&lt;BR /&gt;&amp;lt;div class="cp-ticket-filter__option" data-value="closed"&amp;gt;{{ i18n_getmessage('filter.closed') }}&amp;lt;/div&amp;gt;&lt;BR /&gt;&amp;lt;/div&amp;gt;&lt;BR /&gt;&amp;lt;/div&amp;gt;&lt;BR /&gt;&amp;lt;/div&amp;gt;&lt;BR /&gt;&amp;lt;/div&amp;gt;&lt;BR /&gt;&amp;lt;/form&amp;gt;&lt;/P&gt;&lt;P&gt;{# The id on the table is used for screenreaders/keyboard users to skip directly to the table's data on page load #}&lt;BR /&gt;&amp;lt;table class="cp-ticket-list tableticketLISTINGnew22" id="cpTicketList"&amp;gt;&lt;BR /&gt;&amp;lt;caption&amp;gt;&amp;lt;/caption&amp;gt;&lt;BR /&gt;&amp;lt;thead&amp;gt;&lt;BR /&gt;&amp;lt;tr&amp;gt;&lt;BR /&gt;&amp;lt;th scope="col"&amp;gt;{{ i18n_getmessage('tableHeader.id') }}&amp;lt;/th&amp;gt;&lt;BR /&gt;&amp;lt;th scope="col"&amp;gt;{{ i18n_getmessage('tableHeader.subject') }}&amp;lt;/th&amp;gt;&lt;BR /&gt;&amp;lt;th scope="col"&amp;gt;{{ i18n_getmessage('tableHeader.lastActivity') }}&amp;lt;/th&amp;gt;&lt;BR /&gt;&amp;lt;th scope="col"&amp;gt;Priority&amp;lt;/th&amp;gt;&lt;BR /&gt;&amp;lt;th scope="col"&amp;gt;{{ i18n_getmessage('tableHeader.status') }}&amp;lt;/th&amp;gt;&lt;BR /&gt;&amp;lt;th scope="col"&amp;gt;{{ i18n_getmessage('tableHeader.created') }}&amp;lt;/th&amp;gt;&lt;BR /&gt;&lt;BR /&gt;&amp;lt;/tr&amp;gt;&lt;BR /&gt;&amp;lt;/thead&amp;gt;&lt;BR /&gt;&amp;lt;tbody id="cpTicketTableBody" class="tableorig2022"&amp;gt;&lt;BR /&gt;{% if ticket_array|length &amp;gt; 0 %}&lt;BR /&gt;{% for ticket in ticket_array %}&lt;BR /&gt;{% if ticket.source_type != "CHAT" and ticket.source_type != "Support Automation" and ticket.source_type != "Internal" and ticket.source_type != "Community" and ticket.source_type != "PS" and ticket.source_type != "Chatter"%}&lt;BR /&gt;&amp;lt;tr id="cpTicketRowTemplate" class="hidden cp-ticket-row-clickable"&amp;gt;&lt;BR /&gt;&amp;lt;td class="cp-ticket-id"&amp;gt;&amp;lt;/td&amp;gt;&lt;BR /&gt;&amp;lt;td class="cp-ticket-subject"&amp;gt;&amp;lt;a class="cp-ticket-subject__link"&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/td&amp;gt;&lt;BR /&gt;&amp;lt;td class="cp-ticket-last-activity"&amp;gt;&amp;lt;span aria-hidden="true"&amp;gt;{{ i18n_getmessage('tableHeader.lastActivity') }}&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&lt;BR /&gt;{% if ticket.ticket_priority == "Priority 1"%}&lt;BR /&gt;&amp;lt;td data-label="PRIORITY"&amp;gt;&lt;BR /&gt;&amp;lt;span class="badge badge-pill p1"&amp;gt;{{ticket.ticket_priority}}&amp;lt;/span&amp;gt;&lt;BR /&gt;&amp;lt;/td&amp;gt;&lt;BR /&gt;{% elif ticket.ticket_priority == "Priority 2"%}&lt;BR /&gt;&amp;lt;td data-label="PRIORITY"&amp;gt;&lt;BR /&gt;&amp;lt;span class="badge badge-pill p2"&amp;gt;{{ticket.ticket_priority}}&amp;lt;/span&amp;gt;&lt;BR /&gt;&amp;lt;/td&amp;gt;&lt;BR /&gt;{% elif ticket.ticket_priority == "Priority 3"%}&lt;BR /&gt;&amp;lt;td data-label="PRIORITY"&amp;gt;&lt;BR /&gt;&amp;lt;span class="badge badge-pill p3"&amp;gt;{{ticket.ticket_priority}}&amp;lt;/span&amp;gt;&lt;BR /&gt;&amp;lt;/td&amp;gt;&lt;BR /&gt;{% elif ticket.ticket_priority == "Priority 4"%}&lt;BR /&gt;&amp;lt;td data-label="PRIORITY"&amp;gt;&lt;BR /&gt;&amp;lt;span class="badge badge-pill p4"&amp;gt;{{ticket.ticket_priority}}&amp;lt;/span&amp;gt;&lt;BR /&gt;&amp;lt;/td&amp;gt;&lt;BR /&gt;{% else %}&lt;BR /&gt;&amp;lt;td data-label="PRIORITY"&amp;gt;&lt;BR /&gt;{{ticket.ticket_priority}}&lt;BR /&gt;&amp;lt;/td&amp;gt;&lt;BR /&gt;{% endif %}&lt;BR /&gt;&amp;lt;td class="cp-ticket-status"&amp;gt;&amp;lt;/td&amp;gt;&lt;BR /&gt;&amp;lt;td class="cp-ticket-created"&amp;gt;&amp;lt;span aria-hidden="true"&amp;gt;{{ i18n_getmessage('tableHeader.created') }}&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;lt;/tr&amp;gt;&lt;BR /&gt;&lt;BR /&gt;{% endif %}&lt;BR /&gt;{% endfor %}&lt;BR /&gt;{% endif %}&lt;BR /&gt;&amp;lt;/tbody&amp;gt;&lt;BR /&gt;&amp;lt;/table&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;div id="cpLoadingSpinnerTemplate" class="hidden"&amp;gt;&lt;BR /&gt;&amp;lt;div class="cp-loading-spinner"&amp;gt;&lt;BR /&gt;&amp;lt;div class="cp-loading-spinner__inner" /&amp;gt;&lt;BR /&gt;&amp;lt;/div&amp;gt;&lt;BR /&gt;&amp;lt;/div&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;div id="cpPaginationButtonTemplate" class="hidden"&amp;gt;&lt;BR /&gt;&amp;lt;li class="cp-ticket-pagination-button" data-page-number="1"&amp;gt;&lt;BR /&gt;&amp;lt;a class="cp-ticket-pagination-button__link" aria-label="Page 1"&amp;gt;&lt;BR /&gt;1&lt;BR /&gt;&amp;lt;/a&amp;gt;&lt;BR /&gt;&amp;lt;/li&amp;gt;&lt;BR /&gt;&amp;lt;/div&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&amp;lt;nav aria-label="Ticket Pagination" class="cp-ticket-pagination cp-ticket-pagination--hidden" id="cpTicketPagination"&amp;gt;&lt;BR /&gt;&amp;lt;ul&amp;gt;&lt;BR /&gt;&amp;lt;li id="cpTicketPaginationPrev" class="cp-ticket-pagination-button"&amp;gt;&lt;BR /&gt;&amp;lt;a class="cp-ticket-pagination-button__link" aria-label="{{ i18n_getmessage('pagination.previousPageLabel') }}"&amp;gt;&lt;BR /&gt;{% icon&lt;BR /&gt;name='chevron-left'&lt;BR /&gt;purpose='decorative',&lt;BR /&gt;style='SOLID'&lt;BR /&gt;unicode='f053',&lt;BR /&gt;no_wrapper=True&lt;BR /&gt;%}&lt;BR /&gt;{{ i18n_getmessage('pagination.previousPage') }}&lt;BR /&gt;&amp;lt;/a&amp;gt;&lt;BR /&gt;&amp;lt;/li&amp;gt;&lt;BR /&gt;&amp;lt;ul id="cpPaginationPageButtons"&amp;gt;&amp;lt;/ul&amp;gt;&lt;BR /&gt;&amp;lt;li id="cpTicketPaginationNext" class="cp-ticket-pagination-button"&amp;gt;&lt;BR /&gt;&amp;lt;a class="cp-ticket-pagination-button__link" aria-label="{{ i18n_getmessage('pagination.nextPageLabel') }}"&amp;gt;&lt;BR /&gt;{{ i18n_getmessage('pagination.nextPage') }}&lt;BR /&gt;{% icon&lt;BR /&gt;name='chevron-right'&lt;BR /&gt;purpose='decorative',&lt;BR /&gt;style='SOLID'&lt;BR /&gt;unicode='f054',&lt;BR /&gt;no_wrapper=True&lt;BR /&gt;%}&lt;BR /&gt;&amp;lt;/a&amp;gt;&lt;BR /&gt;&amp;lt;/li&amp;gt;&lt;BR /&gt;&amp;lt;/ul&amp;gt;&lt;BR /&gt;&amp;lt;/nav&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 04 Jul 2022 15:38:26 GMT</pubDate>
    <dc:creator>Jun22</dc:creator>
    <dc:date>2022-07-04T15:38:26Z</dc:date>
    <item>
      <title>Service Hub Tickets - Priority Field not working</title>
      <link>https://community.hubspot.com/t5/Tickets-Conversations/Service-Hub-Tickets-Priority-Field-not-working/m-p/659666#M3579</link>
      <description>&lt;P&gt;Need some help regarding the Ticket-Listing module I tried to add the priority ticket line but when viewing the page it only display 1 priority name e.g Priority 1 instead the other tickets are Priority 2 the loop might be the wrong ?&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Here's the screenshot&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Jun22_0-1656948963691.png" style="width: 400px;"&gt;&lt;img src="https://community.hubspot.com/t5/image/serverpage/image-id/69887i176F342A235DBA73/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Jun22_0-1656948963691.png" alt="Jun22_0-1656948963691.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ScreenShot Tool -20220704233229.png" style="width: 400px;"&gt;&lt;img src="https://community.hubspot.com/t5/image/serverpage/image-id/69888i643DF251D32E6A6E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ScreenShot Tool -20220704233229.png" alt="ScreenShot Tool -20220704233229.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And here's the code of that table at the top&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;{% set user = request_contact.contact %}&lt;BR /&gt;{% set contact_id = user.hs_object_id %}&lt;BR /&gt;{% set company_id = request_contact.company.hs_object_id %}&lt;/P&gt;&lt;P&gt;&amp;lt;!-- Determine the appropriate search criteria based on the logged in Contact's "portal_role" value. --&amp;gt;&lt;BR /&gt;{% set company_or_contact_id = user.portal_role == "Super Admin" ? company_id : contact_id %}&lt;BR /&gt;{% set association_type_id = user.portal_role == "Super Admin" ? 25 : 15 %}&lt;/P&gt;&lt;P&gt;&amp;lt;!-- Retrieve the appropriate Tickets based on the above values. --&amp;gt;&lt;BR /&gt;{% set associated_tickets = crm_associations(company_or_contact_id, 'HUBSPOT_DEFINED', association_type_id,'limit=100&amp;amp;order=-createdate','subject, content, ticket_priority, hs_pipeline_stage, createdate, hs_lastmodifieddate, closed_date, hs_ticket_id, source_type', false) %}&lt;/P&gt;&lt;P&gt;&amp;lt;!-- Store the results in a variable. --&amp;gt;&lt;BR /&gt;{% set ticket_array = associated_tickets.results %}&lt;/P&gt;&lt;P&gt;&amp;lt;form class="cp-ticket-toolbar"&amp;gt;&lt;BR /&gt;&amp;lt;div class="cp-ticket-search" role="search"&amp;gt;&lt;BR /&gt;&amp;lt;label class="show-for-sr" for="cpSearch"&amp;gt;{{ i18n_getmessage('search.description') }}&amp;lt;/label&amp;gt;&lt;BR /&gt;&amp;lt;input id="cpSearch" type="search" name="subject" placeholder="{{ i18n_getmessage('search.placeholder') }}"&amp;gt;&lt;BR /&gt;&amp;lt;/div&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;div class="cp-ticket-filter"&amp;gt;&lt;BR /&gt;&amp;lt;label class="cp-ticket-filter__label" id="cpFilterLabel" aria-label="{{ i18n_getmessage('filter.description') }}"&amp;gt;{{ i18n_getmessage('filter.label') }}&amp;lt;/label&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;div class="cp-ticket-filter__wrapper"&amp;gt;&lt;BR /&gt;&amp;lt;select class="cp-ticket-filter__select-native" id="cpFilterNative" name="status" aria-labelledby="cpFilterLabel"&amp;gt;&lt;BR /&gt;&amp;lt;option value="all"&amp;gt;{{ i18n_getmessage('filter.all') }}&amp;lt;/option&amp;gt;&lt;BR /&gt;&amp;lt;option value="open"&amp;gt;{{ i18n_getmessage('filter.open') }}&amp;lt;/option&amp;gt;&lt;BR /&gt;&amp;lt;option value="closed"&amp;gt;{{ i18n_getmessage('filter.closed') }}&amp;lt;/option&amp;gt;&lt;BR /&gt;&amp;lt;/select&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;div class="cp-ticket-filter__select-custom" id="cpFilterCustom" aria-hidden="true"&amp;gt;&lt;BR /&gt;&amp;lt;div class="cp-ticket-filter__trigger"&amp;gt;{{ i18n_getmessage('filter.all') }}&amp;lt;/div&amp;gt;&lt;BR /&gt;&amp;lt;div class="cp-ticket-filter__options"&amp;gt;&lt;BR /&gt;&amp;lt;div class="cp-ticket-filter__option" data-value="all"&amp;gt;{{ i18n_getmessage('filter.all') }}&amp;lt;/div&amp;gt;&lt;BR /&gt;&amp;lt;div class="cp-ticket-filter__option" data-value="open"&amp;gt;{{ i18n_getmessage('filter.open') }}&amp;lt;/div&amp;gt;&lt;BR /&gt;&amp;lt;div class="cp-ticket-filter__option" data-value="closed"&amp;gt;{{ i18n_getmessage('filter.closed') }}&amp;lt;/div&amp;gt;&lt;BR /&gt;&amp;lt;/div&amp;gt;&lt;BR /&gt;&amp;lt;/div&amp;gt;&lt;BR /&gt;&amp;lt;/div&amp;gt;&lt;BR /&gt;&amp;lt;/div&amp;gt;&lt;BR /&gt;&amp;lt;/form&amp;gt;&lt;/P&gt;&lt;P&gt;{# The id on the table is used for screenreaders/keyboard users to skip directly to the table's data on page load #}&lt;BR /&gt;&amp;lt;table class="cp-ticket-list tableticketLISTINGnew22" id="cpTicketList"&amp;gt;&lt;BR /&gt;&amp;lt;caption&amp;gt;&amp;lt;/caption&amp;gt;&lt;BR /&gt;&amp;lt;thead&amp;gt;&lt;BR /&gt;&amp;lt;tr&amp;gt;&lt;BR /&gt;&amp;lt;th scope="col"&amp;gt;{{ i18n_getmessage('tableHeader.id') }}&amp;lt;/th&amp;gt;&lt;BR /&gt;&amp;lt;th scope="col"&amp;gt;{{ i18n_getmessage('tableHeader.subject') }}&amp;lt;/th&amp;gt;&lt;BR /&gt;&amp;lt;th scope="col"&amp;gt;{{ i18n_getmessage('tableHeader.lastActivity') }}&amp;lt;/th&amp;gt;&lt;BR /&gt;&amp;lt;th scope="col"&amp;gt;Priority&amp;lt;/th&amp;gt;&lt;BR /&gt;&amp;lt;th scope="col"&amp;gt;{{ i18n_getmessage('tableHeader.status') }}&amp;lt;/th&amp;gt;&lt;BR /&gt;&amp;lt;th scope="col"&amp;gt;{{ i18n_getmessage('tableHeader.created') }}&amp;lt;/th&amp;gt;&lt;BR /&gt;&lt;BR /&gt;&amp;lt;/tr&amp;gt;&lt;BR /&gt;&amp;lt;/thead&amp;gt;&lt;BR /&gt;&amp;lt;tbody id="cpTicketTableBody" class="tableorig2022"&amp;gt;&lt;BR /&gt;{% if ticket_array|length &amp;gt; 0 %}&lt;BR /&gt;{% for ticket in ticket_array %}&lt;BR /&gt;{% if ticket.source_type != "CHAT" and ticket.source_type != "Support Automation" and ticket.source_type != "Internal" and ticket.source_type != "Community" and ticket.source_type != "PS" and ticket.source_type != "Chatter"%}&lt;BR /&gt;&amp;lt;tr id="cpTicketRowTemplate" class="hidden cp-ticket-row-clickable"&amp;gt;&lt;BR /&gt;&amp;lt;td class="cp-ticket-id"&amp;gt;&amp;lt;/td&amp;gt;&lt;BR /&gt;&amp;lt;td class="cp-ticket-subject"&amp;gt;&amp;lt;a class="cp-ticket-subject__link"&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/td&amp;gt;&lt;BR /&gt;&amp;lt;td class="cp-ticket-last-activity"&amp;gt;&amp;lt;span aria-hidden="true"&amp;gt;{{ i18n_getmessage('tableHeader.lastActivity') }}&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&lt;BR /&gt;{% if ticket.ticket_priority == "Priority 1"%}&lt;BR /&gt;&amp;lt;td data-label="PRIORITY"&amp;gt;&lt;BR /&gt;&amp;lt;span class="badge badge-pill p1"&amp;gt;{{ticket.ticket_priority}}&amp;lt;/span&amp;gt;&lt;BR /&gt;&amp;lt;/td&amp;gt;&lt;BR /&gt;{% elif ticket.ticket_priority == "Priority 2"%}&lt;BR /&gt;&amp;lt;td data-label="PRIORITY"&amp;gt;&lt;BR /&gt;&amp;lt;span class="badge badge-pill p2"&amp;gt;{{ticket.ticket_priority}}&amp;lt;/span&amp;gt;&lt;BR /&gt;&amp;lt;/td&amp;gt;&lt;BR /&gt;{% elif ticket.ticket_priority == "Priority 3"%}&lt;BR /&gt;&amp;lt;td data-label="PRIORITY"&amp;gt;&lt;BR /&gt;&amp;lt;span class="badge badge-pill p3"&amp;gt;{{ticket.ticket_priority}}&amp;lt;/span&amp;gt;&lt;BR /&gt;&amp;lt;/td&amp;gt;&lt;BR /&gt;{% elif ticket.ticket_priority == "Priority 4"%}&lt;BR /&gt;&amp;lt;td data-label="PRIORITY"&amp;gt;&lt;BR /&gt;&amp;lt;span class="badge badge-pill p4"&amp;gt;{{ticket.ticket_priority}}&amp;lt;/span&amp;gt;&lt;BR /&gt;&amp;lt;/td&amp;gt;&lt;BR /&gt;{% else %}&lt;BR /&gt;&amp;lt;td data-label="PRIORITY"&amp;gt;&lt;BR /&gt;{{ticket.ticket_priority}}&lt;BR /&gt;&amp;lt;/td&amp;gt;&lt;BR /&gt;{% endif %}&lt;BR /&gt;&amp;lt;td class="cp-ticket-status"&amp;gt;&amp;lt;/td&amp;gt;&lt;BR /&gt;&amp;lt;td class="cp-ticket-created"&amp;gt;&amp;lt;span aria-hidden="true"&amp;gt;{{ i18n_getmessage('tableHeader.created') }}&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;lt;/tr&amp;gt;&lt;BR /&gt;&lt;BR /&gt;{% endif %}&lt;BR /&gt;{% endfor %}&lt;BR /&gt;{% endif %}&lt;BR /&gt;&amp;lt;/tbody&amp;gt;&lt;BR /&gt;&amp;lt;/table&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;div id="cpLoadingSpinnerTemplate" class="hidden"&amp;gt;&lt;BR /&gt;&amp;lt;div class="cp-loading-spinner"&amp;gt;&lt;BR /&gt;&amp;lt;div class="cp-loading-spinner__inner" /&amp;gt;&lt;BR /&gt;&amp;lt;/div&amp;gt;&lt;BR /&gt;&amp;lt;/div&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;div id="cpPaginationButtonTemplate" class="hidden"&amp;gt;&lt;BR /&gt;&amp;lt;li class="cp-ticket-pagination-button" data-page-number="1"&amp;gt;&lt;BR /&gt;&amp;lt;a class="cp-ticket-pagination-button__link" aria-label="Page 1"&amp;gt;&lt;BR /&gt;1&lt;BR /&gt;&amp;lt;/a&amp;gt;&lt;BR /&gt;&amp;lt;/li&amp;gt;&lt;BR /&gt;&amp;lt;/div&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&amp;lt;nav aria-label="Ticket Pagination" class="cp-ticket-pagination cp-ticket-pagination--hidden" id="cpTicketPagination"&amp;gt;&lt;BR /&gt;&amp;lt;ul&amp;gt;&lt;BR /&gt;&amp;lt;li id="cpTicketPaginationPrev" class="cp-ticket-pagination-button"&amp;gt;&lt;BR /&gt;&amp;lt;a class="cp-ticket-pagination-button__link" aria-label="{{ i18n_getmessage('pagination.previousPageLabel') }}"&amp;gt;&lt;BR /&gt;{% icon&lt;BR /&gt;name='chevron-left'&lt;BR /&gt;purpose='decorative',&lt;BR /&gt;style='SOLID'&lt;BR /&gt;unicode='f053',&lt;BR /&gt;no_wrapper=True&lt;BR /&gt;%}&lt;BR /&gt;{{ i18n_getmessage('pagination.previousPage') }}&lt;BR /&gt;&amp;lt;/a&amp;gt;&lt;BR /&gt;&amp;lt;/li&amp;gt;&lt;BR /&gt;&amp;lt;ul id="cpPaginationPageButtons"&amp;gt;&amp;lt;/ul&amp;gt;&lt;BR /&gt;&amp;lt;li id="cpTicketPaginationNext" class="cp-ticket-pagination-button"&amp;gt;&lt;BR /&gt;&amp;lt;a class="cp-ticket-pagination-button__link" aria-label="{{ i18n_getmessage('pagination.nextPageLabel') }}"&amp;gt;&lt;BR /&gt;{{ i18n_getmessage('pagination.nextPage') }}&lt;BR /&gt;{% icon&lt;BR /&gt;name='chevron-right'&lt;BR /&gt;purpose='decorative',&lt;BR /&gt;style='SOLID'&lt;BR /&gt;unicode='f054',&lt;BR /&gt;no_wrapper=True&lt;BR /&gt;%}&lt;BR /&gt;&amp;lt;/a&amp;gt;&lt;BR /&gt;&amp;lt;/li&amp;gt;&lt;BR /&gt;&amp;lt;/ul&amp;gt;&lt;BR /&gt;&amp;lt;/nav&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Jul 2022 15:38:26 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Tickets-Conversations/Service-Hub-Tickets-Priority-Field-not-working/m-p/659666#M3579</guid>
      <dc:creator>Jun22</dc:creator>
      <dc:date>2022-07-04T15:38:26Z</dc:date>
    </item>
    <item>
      <title>Re: Service Hub Tickets - Priority Field not working</title>
      <link>https://community.hubspot.com/t5/Tickets-Conversations/Service-Hub-Tickets-Priority-Field-not-working/m-p/661321#M3600</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/126836"&gt;@Jun22&lt;/a&gt;,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for getting in touch! Generally speaking it's not often that Community members would get the time to troubleshoot somebody's code, you might find the &lt;A href="https://developers.hubspot.com/slack?_ga=2.262821134.36332904.1656922500-2065167918.1653291580&amp;amp;_gac=1.54207194.1653466522.CjwKCAjwp7eUBhBeEiwAZbHwkaU_t-31PzLWf8jHdbh3ROeqH_22IamySG6W_6Ee00OKNhJLKJDbbhoCRXEQAvD_BwE" target="_blank" rel="noopener"&gt;Developer Slack Community&lt;/A&gt; a better place to start. If you have a Paid HubSpot Subscription and believe there might be something wrong with some HubSpot code, our Support channels can certainly help you there.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'll tag in some Community members with more expertise in this area who might be able to see the issue.&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/101258"&gt;@Teun&lt;/a&gt;,&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/73772"&gt;@Kevin-C&lt;/a&gt;,&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/166093"&gt;@miljkovicmisa&lt;/a&gt; any thoughts?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best,&amp;nbsp;&lt;BR /&gt;Joe (HubSpot Support)&lt;/P&gt;</description>
      <pubDate>Thu, 07 Jul 2022 13:15:47 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Tickets-Conversations/Service-Hub-Tickets-Priority-Field-not-working/m-p/661321#M3600</guid>
      <dc:creator>JPanama</dc:creator>
      <dc:date>2022-07-07T13:15:47Z</dc:date>
    </item>
  </channel>
</rss>

