Title: Remove Post Date for Event
Last modified: August 20, 2016

---

# Remove Post Date for Event

 *  Resolved [netforest](https://wordpress.org/support/users/netforest/)
 * (@netforest)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/remove-post-date-for-event/)
 * Is there a way to remove the Post_Date when viewing a single event. It’s a little
   confusing to see the date the event was posted as to the actual date of the event.
 * [http://wordpress.org/extend/plugins/events-manager/](http://wordpress.org/extend/plugins/events-manager/)

Viewing 5 replies - 1 through 5 (of 5 total)

 *  [zsolemolina](https://wordpress.org/support/users/zsolemolina/)
 * (@zsolemolina)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/remove-post-date-for-event/#post-3443745)
 * netforest, yes, it’s possible.. but u need to work in the single event page, 
   just commenting the code where date is shown.
 * eg:
    <!– Date(s) – #j #M #Y #@_{ \u\n\t\i\l j M Y} Time (24h Format) – #_24HSTARTTIME–#
   _24HENDTIME Time (12h Format) – #_12HSTARTTIME – #_12HENDTIME –>
 *  [agelonwl](https://wordpress.org/support/users/angelonwl/)
 * (@angelonwl)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/remove-post-date-for-event/#post-3443749)
 * you can also try this snippet – paste in your theme functions.php
 *     ```
       function custom_remove_postdate(){
        remove_filter('the_date',array('EM_Event_Post','the_date'));
       }
       add_action('init','custom_remove_postdate');
       ```
   
 *  [zsolemolina](https://wordpress.org/support/users/zsolemolina/)
 * (@zsolemolina)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/remove-post-date-for-event/#post-3443753)
 * Good idea agelonwl!
 *  Thread Starter [netforest](https://wordpress.org/support/users/netforest/)
 * (@netforest)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/remove-post-date-for-event/#post-3443767)
 * What I was asking is how to remove the date the post was published whch shows
   up at the top of each post. I chose to use posts instead of pages.
 * What happens if I switch to pages for events even though I have multiple events
   created as posts.
 *  [agelonwl](https://wordpress.org/support/users/angelonwl/)
 * (@angelonwl)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/remove-post-date-for-event/#post-3443829)
 * Hi,
 * have you tried my suggested snippet above? or do you have a sample link for us
   to see?

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Remove Post Date for Event’ is closed to new replies.

 * ![](https://ps.w.org/events-manager/assets/icon-256x256.png?rev=1039078)
 * [Events Manager - Calendar, Bookings, Tickets, and more!](https://wordpress.org/plugins/events-manager/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/events-manager/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/events-manager/)
 * [Active Topics](https://wordpress.org/support/plugin/events-manager/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/events-manager/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/events-manager/reviews/)

 * 5 replies
 * 3 participants
 * Last reply from: [agelonwl](https://wordpress.org/support/users/angelonwl/)
 * Last activity: [13 years, 3 months ago](https://wordpress.org/support/topic/remove-post-date-for-event/#post-3443829)
 * Status: resolved