I want to remove the @All Day and @7:00pm from the Event Calendar pop ups...Can someone help out?
I figured out how to remove the All Day part - in the template-functions.php file, but I can't make the @ symbol disappear!
HELP, please!!! :)
Thanks!
I want to remove the @All Day and @7:00pm from the Event Calendar pop ups...Can someone help out?
I figured out how to remove the All Day part - in the template-functions.php file, but I can't make the @ symbol disappear!
HELP, please!!! :)
Thanks!
In case anyone else wants to keep the "@ All Day" from displaying for all day events, here's the code that I added to the day.php file.
Edit/Change the lines right after the if($is_event):
{
if ($time == 'all')
{
// if $time equals "all day" show this
$safe_title .= ' ';
}
else
{
// if time does not equal "all day" show this
$safe_title .=' @ '.$time;
}
I've just tried this out, but i won't work. Perhaps there have been changes?
Does anybody know how to fix this issue of mine? Thanks :)
This topic has been closed to new replies.