Remove custom permalink structure from custom post type without modifying register_post_type() directly

you can do this to modify the definition

$args = get_post_type_object("glossary");
$args->rewrite = array("with_front" => FALSE);
register_post_type($args->name, $args);

this has to be done after the call of “register_post_types()” of the plugin