Have you checked these first?
Help us help you: include your environment details. We've made this easy for you. Use the Copy System Info button in Admin Panel › osAwesome › Diagnostics, then paste below.
Note: Never paste the contents of your ost-config.php file here; it holds your database credentials.
Two quick checks before posting: try clearing your browser cache, and press SHIFT+O on any Staff Panel page to enter Safe Mode (a stock osTicket with no enhancements). If the problem still shows in Safe Mode, it's in osTicket itself, not osTicket Awesome. But let us know about the issue either way.
Help us help you: include your environment details. We've made this easy for you. Use the Copy System Info button in Admin Panel › osAwesome › Diagnostics, then paste below.
This forum is public. Never post order numbers, full license keys, email addresses, or payment details.
This is the place for general questions about how billing and licensing work — renewals, activation, staging slots, plan differences, and what happens when a license lapses.
For anything tied to your specific account, refund, or payment, contact us directly instead.
Hi, I see how to add copyright text using custom CSS, but from what I understand the current year can't be dynamically updated and that would be something a customizable html would do, but I don't see that in themes and I saw nothing in downloadable plugins that would do that. If anyone has done this, could you tell me how it's done please? I'm a systems admin and not much of a web coding guru to say the least.
Here's what I did in Custom CSS. Disabled the OS Ticket logos and added this copyright:
#footer #osticket a,
#footer #ostawesome a {
display: none !important;
}
#footer:after {
content: "Copyright © 2006-2026 Our Company Name. All rights reserved.";
display: block;
text-align: center;
font-size: 14px;
margin-top: 10px;
color: #777;
}
So basically achieve the above but 2026 gets automatically updated to 2027 next year and so forth.
Thanks.
You're right that CSS content can't pull in dynamic values like the current year. But osTicket Awesome includes a file specifically for custom JavaScript: osta/js/user-scripts.js
Keep your existing CSS to hide the default footer links, then add this snippet to user-scripts.js:
javascriptdocument.addEventListener('DOMContentLoaded', function() {
var footer = document.getElementById('footer');
if (footer) {
var copy = document.createElement('div');
copy.style.textAlign = 'center';
copy.style.fontSize = '14px';
copy.style.marginTop = '10px';
copy.style.color = '#777';
copy.textContent = 'Copyright \u00A9 2006-' + new Date().getFullYear() + ' Our Company Name. All rights reserved.';
footer.appendChild(copy);
}
});
Then remove the #footer:after rule from your Custom CSS since the JS handles that part now. Keep the rule that hides the default links.
The year will update automatically every January 1st.
Thank you very much for you help. I'll do that 🙂