Change maintenance message

Permalink 3 users found helpful
Hello Concrete5 members,

Can someone tell me how I can change maintenance message in Concrete5 8.1 ? :)

nesoor
 
c5dragon replied on at Permalink Best Answer Reply
c5dragon
It is wrapped in a translator function but is not appearing in the translate interface... at first. Maybe a reload of the strings is enough. But I added the override already.

If you're not using this option you could override and edit the template.

https://www.concrete5.org/community/forums/customizing_c5/5.7-and-st...
[q]".../concrete/views/frontend/maintenance_mode.php, customised it and uploaded it to /application/views/frontend/maintenance_mode.php.
I then cleared the cache and voila!"[/q]

.../concrete/views/frontend/maintenance_mode.php:
    1  <?php defined('C5_EXECUTE') or die("Access Denied."); ?>
    2  
    3: <h1><?php echo t('Coming Back Soon')?></h1>
    4  
    5  <?php echo t('This site is currently down for maintenance.')?>

Did a local test and it works as described.
nesoor replied on at Permalink Reply
nesoor
Thanks! Exactly what I was looking for !!!