Axero's US team will be attending its annual summit from October 7 to October 10, 2024. During this time, we will continue to provide support through private cases, though there may be a slight delay in response times. We appreciate your understanding and patience.
Use the Custom Featured People template to display users who don't have a shared attribute, such as profile fields or space membership. Highlight cross-functional teams, recognize employees of the month, or feature department heads.
<div class="axero-widget {{CustomCSSClass}} {{#if HideContainerBorder}}axero-widget-no-border{{/if}}"> {{#if ShowWidgetHeader}} <div class="axero-widget-header"> <h3>{{{WidgetTitle}}}</h3> </div> {{/if}} <div class="axero-widget-content"> <div class="list"> <ul> {{#each Contents}} <li> <div class="axero-section-list-avatar"> <a href="{{ContentURL}}" title="{{{Title}}}"><img alt="{{{Title}}}" src="{{ContentImageURL}}" /></a> </div> <div class="axero-section-list-content"> <div class="axero-section-list-content-title"> <a title="{{{Title}}}" href="{{ContentURL}}">{{{Title}}}</a> </div> <div class="axero-section-list-content-date" id="wgt-specific-ppl-{{ContentID}}" style="user-select: auto;"> <!--Occupation--> </div> </div> </li> {{/each}} </ul> </div> </div> {{#if ShowWidgetFooter}} <div class="axero-widget-footer"> {{{FooterHTML}}} </div> {{/if}} </div> {{#each Contents}} <script> $.ajax({ type: "GET", url: "/api/content/" + {{ContentID}} + "?contentTypeID=15&fields=Occupation", contentType:"application/json; charset=utf-8", dataType: "JSON", success: function(response){ var id = "wgt-specific-ppl-" + {{ContentID}}; document.getElementById(id).innerHTML = response.ResponseData.Occupation; } }); </script> {{/each}}
You can edit the Page Builder template to customize which user profile fields appear in the widget. HTML and JavaScript knowledge is required.
url: "/api/content/" + {{ContentID}} + "?contentTypeID=15&fields=Occupation"
url: "/api/content/" + {{ContentID}} + "?contentTypeID=15&fields=Occupation,Department,Phone"
document.getElementById(id).innerHTML = response.ResponseData.Occupation;
document.getElementById(id).innerHTML = `${response.ResponseData.Occupation} | ${response.ResponseData.Department} | ${response.ResponseData.Phone}`;
Example result:
is requesting access to a wiki that you have locked: https://my.axerosolutions.com/spaces/5/communifire-documentation/wiki/view/67241/custom-featured-people-template
Your session has expired. You are being logged out.