How to Hide Timezone in Month View in Calendar App?

I live in two timezones and go back and forth often so I use the timezone support in Calendar app for Mavericks and on my iOS devices and it's quite useful. However, one thing about it really stinks, imho.
I cannot find a way to hide the timezone information associated with individual events in the month view of the Calendar desktop application. This redundant and superfluous information results in the truncation of the event information, which *is* important to me.
For example, instead of an event in month view being displayed as "check amex payment", as it was before I enabled timezone support, it now says "check a... 3AM GMT+7". Since every event has this appended timezone information displayed next to it the month view of my calendar has become much less useful than it was previously. I don't really need to know how many hours ahead of GMT an event is, I pretty much just want to know what the event is and on what day, in the month view. Now I cannot tell what any event is unless I open it in in week or day view. Very frustrating.
If anyone knows of a way to hide that information in the month view it would be greatly appreciated to post it here.
thanks Apple Community!

No one else has this problem or knows of a solution? *weeps quietly*

Similar Messages

  • How to hide events in monthly view?

    Hi,
    I am a grad student and I have weekly classes. I'm trying to figure out a way to display them in the daily schedule, but I want them otherwise to be invisible. What I mean is, I don't want them to show up as an event, and I don't want them to show up in the monthly view. Basically invisible unless you're in daily view.
    Any advice?
    Thanks!
    Ed

    just to hide certain fields (columns) you dont need iterator. you could use columnDefinition attribute of htmlb:tableView tag.
    to do this declare two page attributes as below
    col_control_tab     TYPE     TABLEVIEWCONTROLTAB
    col_wa     TYPE     TABLEVIEWCONTROL
    now in the oninitialization event. fill col_control_tab with the required column details.
    suppose the itab has columns 1 to 10 and you want to display only column 1 and 8 then the coding would be.
    clear col_wa .
      move: '1' to col_wa-columnname , " field name of column1 in itab
      'This is the title of column1' to col_wa-title ,
      'LEFT' to col_wa-horizontalalignment  .
      append col_wa to col_control_tab .
    clear col_wa .
      move: '8' to col_wa-columnname , " field name of column8 in itab
      'This is the title of column8' to col_wa-title ,
      'LEFT' to col_wa-horizontalalignment  .
      append col_wa to col_control_tab .
    the finally
    <htmlb:tableView id                  = "tv1"
                           design              = "ALTERNATING"
                           selectionMode       = "MULTISELECT"
                           onRowSelection      = "MYROWSELECTION"
                           table               = "<%= flights %>"
                         columnDefinitions   = "<%= col_control_tab %>"
    Regards
    Raja

  • How to hide the Columns and Views for Login user in SharePoint 2013

    Hi Friends,
    How to hide the Columns and Views for Login user in SharePoint 2013? Is it possible using OOB features? If not possible how can we hide the Columns and Views for Login user?
    Could you please help on this.
    Thanks,
    Tiru
    Tiru

    Hello Tirupal,
    There is no OOB way to do this.
    Please check this codeplex solution to achieve the same.
    https://sp2013columnpermission.codeplex.com/
    My Blog- http://www.sharepoint-journey.com|
    If a post answers your question, please click Mark As Answer on that post and Vote as Helpful

  • How do you see another month on the calendar or can you only see the current month only

    how do you see another month on the calendar or can you only see the current month only

    You can't see another monthly calendar in the monthly calendar view, you can only see upcoming events for the next 7 days.

  • HT202835 month view on calendar

    Can you show more than two events in month view on calendar? If so, how?

    Hi Prajk,
    Month view is the default view after you create a calendar list.
    Please make sure you are selecting the correct month:
    If you cannot see the events, please create a new calendar to test the issue.
    If you mean you cannot see the detail of the events, I'd suggest you create new view and restrict the Date or refer to the article below to customize the Calendar:
    http://blog.incworx.com/blog/sharepoint-administrators-blog/a-simple-guide-to-show-more-information-on-a-calendar-event
    Regards,
    Rebecca Tu
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Is it possible to change the number of weeks to be displayed in the month view in calendar (mavericks)?

    I'd like to know if it's possible to change the number of weeks to be displayed in the month view in calendar? Thanks!

    No.
    There are up to six calendar weeks that might be used to display the 31 possible days in a month.
    So the month view displays six weeks.

  • When I click on 2014 month view in calendar iPhone 5 s stucks, lagging. What is the problem I don't know????

    When I click on 2014 month view in calendar iPhone 5 s stucks, lagging. What is the problem I don't know????

    Should read 'When I '''clicked''' on your update this a.m......

  • HT204088 How do I stop a monthly payment from an app i purchase but no longer use?

    How do I stop a monthly payment from an app i purchase but no longer use?

    There are instructions on this page for managing and stopping auto-renewing subscriptions : http://support.apple.com/kb/HT4098

  • HT204088 How do i turn off monthly payments for an app I don't want anymore?

    How do i turn off monthly payments for an app I don't want anymore?

    Have a read of this:
    http://support.apple.com/kb/ht4098

  • How to hide fields in table view

    Hi,
    I'm populating the contents of an internal table in a table view. I want to know how to hide few fields in table view. I'm working on classical BSPs.. no MVC and I have not used iterator.
    Thank you
    Sreesanth.

    just to hide certain fields (columns) you dont need iterator. you could use columnDefinition attribute of htmlb:tableView tag.
    to do this declare two page attributes as below
    col_control_tab     TYPE     TABLEVIEWCONTROLTAB
    col_wa     TYPE     TABLEVIEWCONTROL
    now in the oninitialization event. fill col_control_tab with the required column details.
    suppose the itab has columns 1 to 10 and you want to display only column 1 and 8 then the coding would be.
    clear col_wa .
      move: '1' to col_wa-columnname , " field name of column1 in itab
      'This is the title of column1' to col_wa-title ,
      'LEFT' to col_wa-horizontalalignment  .
      append col_wa to col_control_tab .
    clear col_wa .
      move: '8' to col_wa-columnname , " field name of column8 in itab
      'This is the title of column8' to col_wa-title ,
      'LEFT' to col_wa-horizontalalignment  .
      append col_wa to col_control_tab .
    the finally
    <htmlb:tableView id                  = "tv1"
                           design              = "ALTERNATING"
                           selectionMode       = "MULTISELECT"
                           onRowSelection      = "MYROWSELECTION"
                           table               = "<%= flights %>"
                         columnDefinitions   = "<%= col_control_tab %>"
    Regards
    Raja

  • How to hide content in design view within Dreamweaver?

    How can I hide content in design view within Dreamweaver?
    I have a tabbed content menu that uses some javascript. Everything looks great in Live view, but when I go to design view, all the content goes way beyond the div. How can I make it to where I can hide the content in that div in design view or wrap it completely inside of there? It's really hard to explain which is why I provided some pictures!
    LIVE VIEW
    DESIGN VIEW
    Thank you in advance for all the help!
    Dalton

    Humm....... you want to hide it in Design View whilst working on the rest of the site?
    If that is the case set the menu container <div> to display: none; -
    <div id="menu" style="display: none;">This is the content menu</div>
    Then either set it to display: block; when you're ready to view it live or remove the style completely.

  • ICal:  How to hIghlight today in month view?

    In the iCal 'month view' is there a setting to have it hIghlight the current day? I had been using Palm Desktop for years and found that feature useful for directing my eyes to the current day.

    Snags40,
    The "Today" highlighting feature in iCal is not user selectable, and admittedly dim. The only things that have improved the visibility for me have been to change the angle at which I view the screen, and by choosing a different color profile in System Preferences...>Displays>Color>Display Profile: Uncheck "Show profiles for this display only," and choose a different profile, or you can also use the "Calibrate..." selection to choose a user specified profile for your screen.
    ;~)

  • How Display Appointment Hours in Month View?

    I'm new to iCal. In two other calendar applications I have used, it was possible to display the commencement hour of events in the month view, which is my preferred view. I do not see where this is discussed or anywhere where customizing other views is discussed. Have I missed something?
    Message was edited by: Richard Tripp

    Hi Richard,
    I believe there is an option for this in iCal's Preferences.
    Best wishes
    John M

  • How to hide subfolders in Outlook view in iPhone

    Need to hide all subfolders tht comes over from Outlook into my iPhone, takes forever to scroll down when all is showing. Is there a way?

    Humm....... you want to hide it in Design View whilst working on the rest of the site?
    If that is the case set the menu container <div> to display: none; -
    <div id="menu" style="display: none;">This is the content menu</div>
    Then either set it to display: block; when you're ready to view it live or remove the style completely.

  • Scroll is broken on month view in Calendar

    i can no longer scroll to next or previous month with trackpad in Calendar's month view. when i swipe two fingers up or down (or left/right) just nothing happens. is it intentional stupidity to force me to click left/right arrow buttons on top-right?

    Hello there, konkere.
    The following Knowledge Base article offers some great recommendations for issues with erratic behavior with the Trackpad on our MacBook Pro:
    Trackpad or Magic Trackpad is jumpy or erratic
    Follow these steps and recommendations to resolve the issue.
    Be sure only one part of your finger is touching the trackpad and that you are not resting your wrist on or very close to the pad. The trackpad may interpret this as your finger touching it and make the cursor move in that direction.
    If you're using the Magic Trackpad, be sure the batteries are fully charged. 
    Moisture collecting on the trackpad can also cause this issue. Wiping off the trackpad with a cloth or tissue usually fixes this. If the issue goes away when a piece of paper is put between the finger and trackpad you may want to consider purchasing a Teflon applique to fit over the pad to prevent the moisture from having direct contact with the trackpad. Before installing the Teflon applique, confirm the trackpad is clean and dry. You can use a mild glass cleaner sprayed onto the cloth (not onto the trackpad itself)  to clean the trackpad. Note that oil or lotion can also cause the same issue.
    Jewelry may also cause interference. Try removing rings or bracelets and see whether the jumpy or erratic behavior disappears.
    Apple has had some reports of this behavior on Mac notebooks being used with power supplies made by a third-party company. If you are using one of these power adapters, unplug it and try running from the Apple battery to see how the trackpad behaves correctly. Also, try using the Apple AC adapter instead of the third-party AC adapter. If the trackpad behaves normally while running from the battery, there is most likely an issue with your adapter or outlet.
    If none of the above resolve the issue, try to rule-out software not created by Apple as a cause. To do so, start in Safe Mode. 
    Magic Trackpad can act erratically when there is interference. See Wi-Fi and Bluetooth: Potential sources of wireless interference for more information.
    Additional Information
    Learn about Multi-Touch gestures.
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

Maybe you are looking for

  • Trying to set up a ssl vpn and can't get to it from outside?

    I have a barracuda sslvpn and a Hardware:   ASA5510, 1024 MB RAM, CPU Pentium 4 Celeron 1600 MHz Internal ATA Compact Flash, 256MB BIOS Flash M50FW016 @ 0xfff00000, 2048KB When I try and edit the vpn service object to say destination 444 source defau

  • NOTHING seems to work

    I suppose it all started when my computer couldn't withstand the ipod's needs and I had to put it away until I got a firewire card, and I just got one. I installed the card and it LOOKS to work fine. Then....it happens...BOOM a problem, its a little

  • Join Between W_PERSON_F and W_POSITION_D

    Hi, I want to join W_PERSON_F fact table and W_POSITION_D dimension table. Database: Siebel DB. Is there any direct join or we want to join through some other table? Thanks, Satheesh

  • Palm contacts software takes a big step backward

    I decided to buy a Palm Pre in large part because I wanted to preserve the investment I have made in the contacts database I have built up over the years using Palm devices.  I was more than a little disappointed when I discovered that Palm decided t

  • RMI server error under Linux

    Hi all, I'm not excatly sure, whether this is the right forum. Anyway, my problem is this: I've written a JApplet that calls several methods over RMI. The RMI server is up and running properly. Most of the functions work well. One that initializes a