[Plugin: Events Manager] Event Form Issues
-
I am seeing an issue where if using /tables/events.php and you select “Add New” from
$show_add_new
the page title on the entry page is referencing “Edit Event” from the below rather than “Add Event”:Found in events-manager/em-events.php line 146-156
}elseif( $post->ID == $edit_events_page_id ){ if( !empty($_REQUEST['action']) && $_REQUEST['action'] = 'edit' ){ if( is_object($EM_Event) ){ if($EM_Event->is_recurring()){ $content = __( "Reschedule Events", 'dbem' )." '{$EM_Event->event_name}'"; }else{ $content = __( "Edit Event", 'dbem' ) . " '" . $EM_Event->event_name . "'"; } }else{ $content = __( 'Add Event', 'dbem' ); }
This is part of
function em_content_page_title
where$content = __( 'Add Event', 'dbem' );
does not seem to be used.Any thoughts?
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘[Plugin: Events Manager] Event Form Issues’ is closed to new replies.