WPML and Event Manager Plugin Compatibility
Add this code snippet to your functions.php or download it from http://pastebin.com/a1fc7vsE
function em_wpml_integration($conditions, $args){ function em_wpml_integration_locations($conditions, $args){global $wpdb; if( defined(‘ICL_LANGUAGE_CODE’) ){ $conditions[‘wpml’] = EM_LOCATIONS_TABLE.’.post_id IN (SELECT element_id FROM ‘.$wpdb->prefix.”icl_translations WHERE language_code ='”.ICL_LANGUAGE_CODE.”‘ AND element_type=’post_”.EM_POST_TYPE_LOCATION.”‘)”; } return $conditions; } add_filter(’em_locations_build_sql_conditions’,’em_wpml_integration_locations’,10,2); function em_wmpl_location_save($result, $EM_Location){ |