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.