• Good day,

    Scenario: I’m provide live chat for customer service in my site. Live chat start from 8 AM until 10 PM.

    My question is: How to show live chat only from 8am until 10pm using IF ElSE ?? If outside that hours, I want to hide the live chat.

    Thank you very much.

    Kind regards,
    Shine

    [ No bumping please. ]

Viewing 1 replies (of 1 total)
  • Thread Starter v123shine

    (@v123shine)

    I try using the below code, but still can’t work. Can someone help me, please!

    <?php
    date_default_timezone_set('Australia/Melbourne');
    $date = date('h:i', time());
    
    if ( $date > 08.00 && $date < 22.00 ) {
    	echo "True";
    }
    else {
    	echo "False";
    }
    ?>
Viewing 1 replies (of 1 total)
  • The topic ‘Show Chat in Specific Time?’ is closed to new replies.