Viewing 5 replies - 1 through 5 (of 5 total)
  • 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
    –>

    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');

    Good idea agelonwl!

    Thread Starter netforest

    (@netforest)

    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.

    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.