0
Welcome Guest! Login
0 items Join Now

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.

Display Module By Day?

  • Display Module By Day?

    Posted 13 years 4 months ago
    • Hello!
      Anyone know if there's a RocketTheme Extension or trick that'll let me build a "Daily Specials" type module that will change based on the day?

      If not, does anyone have one they recommend?

      Thanks!
    • Who?'s Avatar
    • Who?
    • Preeminent Rocketeer
    • Posts: 25562
    • Thanks: 613
    • Joomla freelancer

    Re: Display Module By Day?

    Posted 13 years 4 months ago
    • Adamck's Avatar
    • Adamck
    • Elite Rocketeer
    • Posts: 546
    • Thanks: 2
    • 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 
      }
      ?>
    • Kiss my RSS

Time to create page: 0.073 seconds