Title: bodaniel's Replies | WordPress.org

---

# bodaniel

  [  ](https://wordpress.org/support/users/bodaniel/)

 *   [Profile](https://wordpress.org/support/users/bodaniel/)
 *   [Topics Started](https://wordpress.org/support/users/bodaniel/topics/)
 *   [Replies Created](https://wordpress.org/support/users/bodaniel/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/bodaniel/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/bodaniel/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/bodaniel/engagements/)
 *   [Favorites](https://wordpress.org/support/users/bodaniel/favorites/)

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Events Manager - Calendar, Bookings, Tickets, and more!] [Plugin: Events Manager] Get startdate for current event](https://wordpress.org/support/topic/plugin-events-manager-get-startdate-for-current-event/)
 *  Thread Starter [bodaniel](https://wordpress.org/support/users/bodaniel/)
 * (@bodaniel)
 * [14 years, 3 months ago](https://wordpress.org/support/topic/plugin-events-manager-get-startdate-for-current-event/#post-2401563)
 * Hi,
    After upgrade to em 5 with permalinks set like “[http://www.myurl.com/events/2012-01-26/&#8221](http://www.myurl.com/events/2012-01-26/&#8221);
   the request variable seems no longer be set? Do I have to get the date from the
   permalink URL or can I take it from some global parameter? Thanks in advance!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Events Manager - Calendar, Bookings, Tickets, and more!] [Plugin: Events Manager] When edit event, start and end time is one hour wrong](https://wordpress.org/support/topic/plugin-events-manager-when-edit-event-start-and-end-time-is-one-hour-wrong/)
 *  Thread Starter [bodaniel](https://wordpress.org/support/users/bodaniel/)
 * (@bodaniel)
 * [14 years, 3 months ago](https://wordpress.org/support/topic/plugin-events-manager-when-edit-event-start-and-end-time-is-one-hour-wrong/#post-2525551)
 * Hi,
    Thanks there was a conflict with another calendar plugin I had.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Events Manager - Calendar, Bookings, Tickets, and more!] [Plugin: Events Manager] Get startdate for current event](https://wordpress.org/support/topic/plugin-events-manager-get-startdate-for-current-event/)
 *  Thread Starter [bodaniel](https://wordpress.org/support/users/bodaniel/)
 * (@bodaniel)
 * [14 years, 6 months ago](https://wordpress.org/support/topic/plugin-events-manager-get-startdate-for-current-event/#post-2401413)
 * Now I figured out this:
    It works fine if I have multiple events the same day,
   and click on the particular event, then I can see the timestamp. But if I have
   only a single event on a day then I don’t see the timestamp. But if I set this“
   Show list on day with single event?” in admin, then I have to click the particular
   event and than it works.
 * Is there any way I can get “$EM_Event->start” for single events on a day without
   having to set “Show list on day with single event?” to yes in admin?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Events Manager - Calendar, Bookings, Tickets, and more!] [Plugin: Events Manager] Get startdate for current event](https://wordpress.org/support/topic/plugin-events-manager-get-startdate-for-current-event/)
 *  Thread Starter [bodaniel](https://wordpress.org/support/users/bodaniel/)
 * (@bodaniel)
 * [14 years, 6 months ago](https://wordpress.org/support/topic/plugin-events-manager-get-startdate-for-current-event/#post-2401408)
 * My fault… It works fine now. 🙂
    It didn’t work on the particular event I was
   testing with, acctually I don’t know why. But anyway I created another testevent
   and now it works fine! Thanks for your help!
 * / Daniel
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Events Manager - Calendar, Bookings, Tickets, and more!] [Plugin: Events Manager] Get startdate for current event](https://wordpress.org/support/topic/plugin-events-manager-get-startdate-for-current-event/)
 *  Thread Starter [bodaniel](https://wordpress.org/support/users/bodaniel/)
 * (@bodaniel)
 * [14 years, 6 months ago](https://wordpress.org/support/topic/plugin-events-manager-get-startdate-for-current-event/#post-2401283)
 * Have tried that also, still no timestamp 🙁
 *     ```
       function my_em_custom_content($content){
         global $EM_Event;
         $content .= $EM_Event->start . " hello world";
         return $content;
       }
       add_filter('em_content','my_em_custom_content');
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Events Manager - Calendar, Bookings, Tickets, and more!] [Plugin: Events Manager] Get startdate for current event](https://wordpress.org/support/topic/plugin-events-manager-get-startdate-for-current-event/)
 *  Thread Starter [bodaniel](https://wordpress.org/support/users/bodaniel/)
 * (@bodaniel)
 * [14 years, 6 months ago](https://wordpress.org/support/topic/plugin-events-manager-get-startdate-for-current-event/#post-2401279)
 * Ok, I have tried that but I can’t get it work 🙁
    I have tested with this function
   but don’t get any timestamp printed, only “hello world”:
 *     ```
       function my_em_custom_content($content){
         $content .= $EM_Event->start . " hello world";
       	return $content;
       }
       add_filter('em_content','my_em_custom_content');
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Events Manager - Calendar, Bookings, Tickets, and more!] [Plugin: Events Manager] Get startdate for current event](https://wordpress.org/support/topic/plugin-events-manager-get-startdate-for-current-event/)
 *  Thread Starter [bodaniel](https://wordpress.org/support/users/bodaniel/)
 * (@bodaniel)
 * [14 years, 6 months ago](https://wordpress.org/support/topic/plugin-events-manager-get-startdate-for-current-event/#post-2401267)
 * Thanks for the reply Marcus.
    This assumes that I know the date. But in my case
   the startdate will differ depending on what event the user is currently looking
   in to. So I need some way to get the startdate for the event instance currently
   beeing shown. Can I set global $EM_Event and get the startdate in some way? Hope
   you understand my issue.
 * Thanks!
    / Daniel

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