Display a message on support. Print

  • 0

Want to display a message on a certain day on the ticket reply and add pages?

Open:

  • /plugins/support_manager/views/default/client_tickets_add.pdt
  • /plugins/support_manager/views/default/client_tickets_reply.pdt

Add below: <div class="col-md-12">

<?php $date_mike = date(D);
    if( $date_mike == 'Fri' OR $date_mike == 'Sat' ){
?>
<div class="alert alert-danger" role="alert">
    <p><b>Important Notice:</b> Please be aware of delays on Saturday between 8:30am - 5pm GMT. We will try to reply to your ticket as soon as possible.<br />We apologies for the inconvenience, and we thank you for your patience.</p>
</div>
<?php } ?>

Was this answer helpful?

« Back