ROCKETTHEME IS CLOSING ON JUNE 30, 2025. As a thank-you to our community, enjoy 50% off all themes with the promo code THANKYOU before we shut down.
Read our Farewell Blog Post for more details.
Web Developer, IT Assistant, Graphics design, App Developer
Re: Display Module By Day?
Posted 13 years 4 months ago
Custom php plugin modules such as Flexi Custom Code will allow php to get the date and display something.
For a basic example...
<?php
$d=date("l"); //GETS DAY IN FULL NAME FROM SERVER
if ($d=="monday") {
?>
<img src="Monday_Deal.jpg" />
<?php
} else if ($d=="tuesday") {
?>
<img src="Tuesday_Deal.jpg" />
<?php
}
?>