Question:
How do I change the title tag of my Enterprise / WebStorm page?
Answer:
- Using simple Javascript, administrators can change the name of the page title tag in your WebStorm or Enterprise.
- Please add the following to a Text / HTML widget on your WebStorm page(s) where you want it to update.
<script>
document.title = 'My new title here';
</script>
Comments