You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
How can I change the Incident History of status page, i.e. change history to Jan 2021 instead of May 2018?
I can change the display of each component but not this specific range on the Incident History.
Would CSS editing work?
Hi @Adamantia Leivada !
While there's no explicit setting you can use to change this, there is some flexibility in the custom HTML/JS path you mentioned.
For example, you can completely remove the link to /history from your main Statuspage using this snippet:
Another option would be to use a custom JS snippet to remove the date range selector from the /history page. This won't change the default 3-month visibility there but will make it so users can't select older time ranges on the page:
The snippet I used was modified from our sample customizations repository:
<script>
$(function() {
$('.pagination-container').remove();
});
</script>
While I don't think this is the exact end result you are looking for, hopefully it helps point you in the right direction for customizing your own page!
Thank you Robert. Would it be possible to confirm if I can apply this solution under the Start up plan?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Adamantia Leivada !
This option would require the custom HTML/JS feature, which is only available on Business or Enterprise plans.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.