X-Cart: shopping cart software

X-Cart forums (https://forum.x-cart.com/index.php)
-   Changing design (https://forum.x-cart.com/forumdisplay.php?f=51)
-   -   Day Specific Text (https://forum.x-cart.com/showthread.php?t=42922)

evergreensprinklers 10-11-2008 06:05 AM

Day Specific Text
 
I would like to display certain text on Fridays and Saturdays on our website, then on any other day, have nothing showing. Is there an easy way to automate this? Basically it would be something like this:

If Friday: Show Text 1
If Saturday: Show Text 2
If Any Other Day: Show Nothing

Any help would be greatly appreciated!

geckoday 10-11-2008 06:39 AM

Re: Day Specific Text
 
This should work:
PHP Code:

{if $smarty.now|date_format:"%u" eq 6} {* Saturday *}
Saturday stuff
{elseif $smarty.now|date_format:"%u" eq 7} {* Sunday *}
Sunday stuff
{/if} 


carpeperdiem 10-11-2008 06:43 AM

Re: Day Specific Text
 
Ralph solved this for me as well last year!
-- here is a page in the smarty docs with date/time string features --edit as needed:

http://www.smarty.net/manual/en/language.modifier.date.format.php

Hope this helps!

evergreensprinklers 10-11-2008 07:46 AM

Re: Day Specific Text
 
Ralph,

Thanks for your help! It worked like a charm!

Chas.


All times are GMT -8. The time now is 02:17 AM.

Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.