You can use php to hide or show specific content based on time.
<?php
putenv("TZ=America/Los_Angeles"); // Setting time to Pacific time
$week = date("N"); //Getting week 1 for Monday and 7 for
Sunday
echo $week;
if ($week >= 1 && $week <= 5 ) //if Week day
{
echo 'Google code here!!';
} else {
echo 'nothing or some comment here!!';
}
?>
On Feb 18, 2:15 pm, "[email protected]"
<[email protected]> wrote:
> I agree that this would be a helpful option to have, preferably with
> some flexibility over which days are displayed (e.g. weekdays only,
> weekends only, Wednesdays-Saturdays, etc). Request seconded!
>
> Peter
>
> On Feb 17, 3:52 am, CUBRIC studies database
>
> <[email protected]> wrote:
> > Hi there ,
>
> > Does anyone know how to make an embedded calendar view
> > weekdays only?
>
> > Cheers,
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Calendar Data API" group.
To post to this group, send email to
[email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/google-calendar-help-dataapi?hl=en
-~----------~----~----~----~------~----~------~--~---